debugdiscovery: drop duplicated information
The old line informing about the local being a superset or subset of the remote
is redundant with the newly introduced data. So we drop it.
--- a/mercurial/debugcommands.py Tue Mar 26 17:25:22 2019 +0100
+++ b/mercurial/debugcommands.py Tue Mar 26 17:26:11 2019 +0100
@@ -851,10 +851,6 @@
ui.write(("common heads: %s\n") %
" ".join(sorted(short(n) for n in common)))
- if lheads <= common:
- ui.write(("local is subset\n"))
- elif rheads <= common:
- ui.write(("remote is subset\n"))
_chunksize = 4 << 10
--- a/tests/test-setdiscovery.t Tue Mar 26 17:25:22 2019 +0100
+++ b/tests/test-setdiscovery.t Tue Mar 26 17:26:11 2019 +0100
@@ -57,7 +57,6 @@
common: 7
missing: 0
common heads: 01241442b3c2 b5714e113bc0
- local is subset
% -- a -> b set
comparing with b
@@ -78,7 +77,6 @@
common: 7
missing: 0
common heads: 01241442b3c2 b5714e113bc0
- local is subset
% -- a -> b set (tip only)
comparing with b
@@ -118,7 +116,6 @@
common: 7
missing: 8
common heads: 01241442b3c2 b5714e113bc0
- remote is subset
% -- b -> a set
comparing with a
@@ -139,7 +136,6 @@
common: 7
missing: 8
common heads: 01241442b3c2 b5714e113bc0
- remote is subset
% -- b -> a set (tip only)
comparing with a
@@ -160,7 +156,6 @@
common: 7
missing: 8
common heads: 01241442b3c2 b5714e113bc0
- remote is subset
Many new: