summaryrefslogtreecommitdiff
path: root/t/t4039-diff-assume-unchanged.sh
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2019-10-28 00:59:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-10-28 02:34:58 (GMT)
commit37ab8ebef164cc2813658c824561a09dc7cde22f (patch)
treedaf09cbc292aeb9d0f441d9603e5e0dc6aeaa259 /t/t4039-diff-assume-unchanged.sh
parent0370b354147de8cb25cf9722bf70a441c0d1fbf4 (diff)
downloadgit-37ab8ebef164cc2813658c824561a09dc7cde22f.zip
git-37ab8ebef164cc2813658c824561a09dc7cde22f.tar.gz
git-37ab8ebef164cc2813658c824561a09dc7cde22f.tar.bz2
t4039: abstract away SHA-1-specific constants
Adjust the test so that it computes variables for object IDs instead of using hard-coded hashes. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4039-diff-assume-unchanged.sh')
-rwxr-xr-xt/t4039-diff-assume-unchanged.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t4039-diff-assume-unchanged.sh b/t/t4039-diff-assume-unchanged.sh
index 53ac44b..0eb0314 100755
--- a/t/t4039-diff-assume-unchanged.sh
+++ b/t/t4039-diff-assume-unchanged.sh
@@ -12,6 +12,7 @@ test_expect_success 'setup' '
git commit -m zero &&
echo one > one &&
echo two > two &&
+ blob=$(git hash-object one) &&
git add one two &&
git commit -m onetwo &&
git update-index --assume-unchanged one &&
@@ -20,7 +21,7 @@ test_expect_success 'setup' '
'
test_expect_success 'diff-index does not examine assume-unchanged entries' '
- git diff-index HEAD^ -- one | grep -q 5626abf0f72e58d7a153368ba57db4c673c0e171
+ git diff-index HEAD^ -- one | grep -q $blob
'
test_expect_success 'diff-files does not examine assume-unchanged entries' '