From 3c27e2e05935248734cdb4d5220a0785d79b5ae6 Mon Sep 17 00:00:00 2001 From: Christian Couder Date: Sun, 6 Jan 2019 16:46:37 +0100 Subject: [PATCH] helper/test-ref-store: fix "new-sha1" vs "old-sha1" typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It looks like it is a copy-paste error made in 80f2a6097c (t/helper: add test-ref-store to test ref-store functions, 2017-03-26) to pass "old-sha1" instead of "new-sha1" to notnull() when we get the new sha1 argument from const char **argv. Signed-off-by: Christian Couder Acked-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- t/helper/test-ref-store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/helper/test-ref-store.c b/t/helper/test-ref-store.c index 2d84c45ffe..862331c029 100644 --- a/t/helper/test-ref-store.c +++ b/t/helper/test-ref-store.c @@ -211,7 +211,7 @@ static int cmd_update_ref(struct ref_store *refs, const char **argv) { const char *msg = notnull(*argv++, "msg"); const char *refname = notnull(*argv++, "refname"); - const char *new_sha1_buf = notnull(*argv++, "old-sha1"); + const char *new_sha1_buf = notnull(*argv++, "new-sha1"); const char *old_sha1_buf = notnull(*argv++, "old-sha1"); unsigned int flags = arg_flags(*argv++, "flags"); unsigned char old_sha1[20]; -- 2.11.4.GIT