diff options
author | Han-Wen Nienhuys <hanwen@google.com> | 2022-01-20 15:12:08 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-01-20 11:31:53 -0800 |
commit | 6322511148447d30c8c43b63f4561a86d177b620 (patch) | |
tree | 526a594f29977639f69efdd1eefac59e14cfb43d /reftable | |
parent | reftable: order unittests by complexity (diff) | |
download | tgif-6322511148447d30c8c43b63f4561a86d177b620.tar.xz |
reftable: drop stray printf in readwrite_test
Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'reftable')
-rw-r--r-- | reftable/readwrite_test.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/reftable/readwrite_test.c b/reftable/readwrite_test.c index 287cbc5999..165cf47417 100644 --- a/reftable/readwrite_test.c +++ b/reftable/readwrite_test.c @@ -662,7 +662,6 @@ static void test_write_key_order(void) err = reftable_writer_add_ref(w, &refs[0]); EXPECT_ERR(err); err = reftable_writer_add_ref(w, &refs[1]); - printf("%d\n", err); EXPECT(err == REFTABLE_API_ERROR); reftable_writer_close(w); reftable_writer_free(w); |