Git fork

test-pkt-line: drop colon from sideband identity

We pass "sideband: " as our identity for errors to recv_sideband(). But
it already adds the trailing colon and space. This doesn't invalidate
any tests, but it looks funny when you examine the test output.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Jeff King and committed by
Junio C Hamano
712b0377 8e86cf65

+1 -1
+1 -1
t/helper/test-pkt-line.c
··· 100 101 static int receive_sideband(void) 102 { 103 - return recv_sideband("sideband: ", 0, 1); 104 } 105 106 int cmd__pkt_line(int argc, const char **argv)
··· 100 101 static int receive_sideband(void) 102 { 103 + return recv_sideband("sideband", 0, 1); 104 } 105 106 int cmd__pkt_line(int argc, const char **argv)