diff options
author | Patrick Steinhardt <ps@pks.im> | 2023-11-29 08:24:49 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-12-03 03:50:23 +0100 |
commit | b49831ca1cb91dc04edee8b5c40cee093372e948 (patch) | |
tree | 68342ca40254c4359e203b975bb989ffec34fd9d | |
parent | t1400: split up generic reflog tests from the reffile-specific ones (diff) | |
download | git-b49831ca1cb91dc04edee8b5c40cee093372e948.tar.xz git-b49831ca1cb91dc04edee8b5c40cee093372e948.zip |
t1401: stop treating FETCH_HEAD as real reference
One of the tests in t1401 asserts that we can create a symref from a
symbolic reference to a top-level reference, which is done by linking
from `refs/heads/top-level` to `FETCH_HEAD`. But `FETCH_HEAD` is not a
proper reference and doesn't even follow the loose reference format, so
it is not a good candidate for the logic under test.
Refactor the test to use `ORIG_HEAD` instead of `FETCH_HEAD`. This also
works with other backends than the reffiles one.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t1401-symbolic-ref.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t1401-symbolic-ref.sh b/t/t1401-symbolic-ref.sh index c7745e1bf6..3241d35917 100755 --- a/t/t1401-symbolic-ref.sh +++ b/t/t1401-symbolic-ref.sh @@ -171,8 +171,8 @@ test_expect_success 'symbolic-ref refuses invalid target for non-HEAD' ' ' test_expect_success 'symbolic-ref allows top-level target for non-HEAD' ' - git symbolic-ref refs/heads/top-level FETCH_HEAD && - git update-ref FETCH_HEAD HEAD && + git symbolic-ref refs/heads/top-level ORIG_HEAD && + git update-ref ORIG_HEAD HEAD && test_cmp_rev top-level HEAD ' |