]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t5316-pack-delta-depth.sh
Merge branch 'ab/detox-gettext-tests'
[thirdparty/git.git] / t / t5316-pack-delta-depth.sh
index 0f06c40eb13f31d8f06962dd1c88c5ff5810618f..a8c1bc0f66b0da238af0cf1051bb7cfafbf27db8 100755 (executable)
@@ -84,14 +84,14 @@ test_expect_success 'packing produces a long delta' '
        pack=$(git pack-objects --all --window=0 </dev/null pack) &&
        echo 9 >expect &&
        max_chain pack-$pack.pack >actual &&
-       test_i18ncmp expect actual
+       test_cmp expect actual
 '
 
 test_expect_success '--depth limits depth' '
        pack=$(git pack-objects --all --depth=5 </dev/null pack) &&
        echo 5 >expect &&
        max_chain pack-$pack.pack >actual &&
-       test_i18ncmp expect actual
+       test_cmp expect actual
 '
 
 test_done