]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t1302-repo-version.sh
Merge branch 'bc/sha-256-part-2'
[thirdparty/git.git] / t / t1302-repo-version.sh
index ce4cff13bbced58add641a463321f36673121fd7..d60c042ce88b5306b8c32f6b3d928338f6720168 100755 (executable)
@@ -8,6 +8,10 @@ test_description='Test repository version check'
 . ./test-lib.sh
 
 test_expect_success 'setup' '
+       test_oid_cache <<-\EOF &&
+       version sha1:0
+       version sha256:1
+       EOF
        cat >test.patch <<-\EOF &&
        diff --git a/test.txt b/test.txt
        new file mode 100644
@@ -23,7 +27,7 @@ test_expect_success 'setup' '
 '
 
 test_expect_success 'gitdir selection on normal repos' '
-       echo 0 >expect &&
+       echo $(test_oid version) >expect &&
        git config core.repositoryformatversion >actual &&
        git -C test config core.repositoryformatversion >actual2 &&
        test_cmp expect actual &&