summaryrefslogtreecommitdiff
path: root/tests/t00-core.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/t00-core.c')
-rw-r--r--tests/t00-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t00-core.c b/tests/t00-core.c
index 7f142ba21..10e6aaebf 100644
--- a/tests/t00-core.c
+++ b/tests/t00-core.c
@@ -485,7 +485,7 @@ BEGIN_TEST(filebuf0, "make sure git_filebuf_open doesn't delete an existing lock
must_pass(fd);
must_pass(p_close(fd));
must_fail(git_filebuf_open(&file, test, 0));
- must_pass(git_path_exists(testlock));
+ must_be_true(git_path_exists(testlock));
must_pass(p_unlink(testlock));
END_TEST