summaryrefslogtreecommitdiff
path: root/t/helper/test-pkt-line.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2020-10-27 07:13:09 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-10-27 18:57:51 (GMT)
commit712b0377db60e0d3ac8bf3332022dfcd01e29afa (patch)
tree065d3c4b47f856f586a3fbf3b9ed1fd82c8f4ee0 /t/helper/test-pkt-line.c
parent8e86cf6581655624e1f3284126c5ea664685eb44 (diff)
downloadgit-712b0377db60e0d3ac8bf3332022dfcd01e29afa.zip
git-712b0377db60e0d3ac8bf3332022dfcd01e29afa.tar.gz
git-712b0377db60e0d3ac8bf3332022dfcd01e29afa.tar.bz2
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>
Diffstat (limited to 't/helper/test-pkt-line.c')
-rw-r--r--t/helper/test-pkt-line.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper/test-pkt-line.c b/t/helper/test-pkt-line.c
index 0bf2064..5e638f0 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)