summaryrefslogtreecommitdiff
path: root/tests/refs/rename.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/refs/rename.c')
-rw-r--r--tests/refs/rename.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/refs/rename.c b/tests/refs/rename.c
index 6ec8f65ea..9933bee1d 100644
--- a/tests/refs/rename.c
+++ b/tests/refs/rename.c
@@ -264,7 +264,7 @@ void test_refs_rename__overwrite(void)
git_oid id;
cl_git_pass(git_reference_lookup(&ref, g_repo, ref_master_name));
- cl_assert(git_reference_type(ref) & GIT_REF_OID);
+ cl_assert(git_reference_type(ref) & GIT_REFERENCE_DIRECT);
git_oid_cpy(&id, git_reference_target(ref));
@@ -297,7 +297,7 @@ void test_refs_rename__prefix(void)
git_oid id;
cl_git_pass(git_reference_lookup(&ref, g_repo, ref_master_name));
- cl_assert(git_reference_type(ref) & GIT_REF_OID);
+ cl_assert(git_reference_type(ref) & GIT_REFERENCE_DIRECT);
git_oid_cpy(&id, git_reference_target(ref));
@@ -330,7 +330,7 @@ void test_refs_rename__move_up(void)
git_oid id;
cl_git_pass(git_reference_lookup(&ref, g_repo, ref_master_name));
- cl_assert(git_reference_type(ref) & GIT_REF_OID);
+ cl_assert(git_reference_type(ref) & GIT_REFERENCE_DIRECT);
git_oid_cpy(&id, git_reference_target(ref));