1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-07 16:16:28 +02:00

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>
This commit is contained in:
Jeff King 2020-10-27 03:13:09 -04:00 committed by Junio C Hamano
parent 8e86cf6581
commit 712b0377db

View File

@ -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)