]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t5318-commit-graph.sh
t5318-commit-graph.sh: use core.commitGraph
[thirdparty/git.git] / t / t5318-commit-graph.sh
index 77d85aefe7da18a0d7cc2db2baaedacead6b2e97..59d0be28776b4ac7be7fb36501cb3983a893491c 100755 (executable)
@@ -28,8 +28,8 @@ test_expect_success 'create commits and repack' '
 '
 
 graph_git_two_modes() {
-       git -c core.graph=true $1 >output
-       git -c core.graph=false $1 >expect
+       git -c core.commitGraph=true $1 >output
+       git -c core.commitGraph=false $1 >expect
        test_cmp output expect
 }