t5503: fix overspecification of trace expectation

In order to extract the wants from a trace, a loop in t5503 currently breaks if "0000" is found. This works for protocol v0 and v1, but not v2. Instead, teach t5503 to look specifically for the "want" string, which is compatible with all protocols. Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Jonathan Tan committed Feb 25, 2019 at 13:54 UTC 15ff91aa8357ed94f3a646ff65c477517627a63d
1 file changed +1 -1
t/t5503-tagfollow.sh
+1 -1
@@ -47,7 +47,7 @@ get_needs () {
47 test -s "$1" &&
48 perl -alne '
49 next unless $F[1] eq "upload-pack<";
50 - last if $F[2] eq "0000";
50 + next unless $F[2] eq "want";
51 print $F[2], " ", $F[3];
52 ' "$1"
53 }