From: Jeff King Date: Tue, 27 Oct 2020 07:13:09 +0000 (-0400) Subject: test-pkt-line: drop colon from sideband identity X-Git-Tag: v2.30.0-rc0~141^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=712b0377db60e0d3ac8bf3332022dfcd01e29afa;p=thirdparty%2Fgit.git 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 Signed-off-by: Junio C Hamano --- diff --git a/t/helper/test-pkt-line.c b/t/helper/test-pkt-line.c index 0bf20642be..5e638f0b97 100644 --- a/t/helper/test-pkt-line.c +++ b/t/helper/test-pkt-line.c @@ -100,7 +100,7 @@ static int send_split_sideband(void) static int receive_sideband(void) { - return recv_sideband("sideband: ", 0, 1); + return recv_sideband("sideband", 0, 1); } int cmd__pkt_line(int argc, const char **argv)