diff options
Diffstat (limited to 'tests/status/single.c')
-rw-r--r-- | tests/status/single.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/status/single.c b/tests/status/single.c index 6efaab294..e7f92097c 100644 --- a/tests/status/single.c +++ b/tests/status/single.c @@ -21,7 +21,7 @@ void test_status_single__hash_single_file(void) cl_git_mkfile(file_name, file_contents); cl_set_cleanup(&cleanup__remove_file, (void *)file_name); - cl_git_pass(git_odb_hashfile(&actual_id, file_name, GIT_OBJ_BLOB)); + cl_git_pass(git_odb_hashfile(&actual_id, file_name, GIT_OBJECT_BLOB)); cl_assert_equal_oid(&expected_id, &actual_id); } @@ -39,7 +39,7 @@ void test_status_single__hash_single_empty_file(void) cl_git_mkfile(file_name, file_contents); cl_set_cleanup(&cleanup__remove_file, (void *)file_name); - cl_git_pass(git_odb_hashfile(&actual_id, file_name, GIT_OBJ_BLOB)); + cl_git_pass(git_odb_hashfile(&actual_id, file_name, GIT_OBJECT_BLOB)); cl_assert_equal_oid(&expected_id, &actual_id); } |