]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t4049-diff-stat-count.sh
tests: remove most uses of test_i18ncmp
[thirdparty/git.git] / t / t4049-diff-stat-count.sh
index a34121740a4ab58e8abd16b3a00df5f44d2f1648..53061b104ecc1af2eebb9d79fa2af5655236471d 100755 (executable)
@@ -25,7 +25,7 @@ test_expect_success 'mode-only change show as a 0-line change' '
         4 files changed, 2 insertions(+)
        EOF
        git diff --stat --stat-count=2 HEAD >actual &&
-       test_i18ncmp expect actual
+       test_cmp expect actual
 '
 
 test_expect_success 'binary changes do not count in lines' '
@@ -40,7 +40,7 @@ test_expect_success 'binary changes do not count in lines' '
         3 files changed, 2 insertions(+)
        EOF
        git diff --stat --stat-count=2 >actual &&
-       test_i18ncmp expect actual
+       test_cmp expect actual
 '
 
 test_expect_success 'exclude unmerged entries from total file count' '
@@ -62,7 +62,7 @@ test_expect_success 'exclude unmerged entries from total file count' '
         3 files changed, 3 insertions(+)
        EOF
        git diff --stat --stat-count=2 >actual &&
-       test_i18ncmp expect actual
+       test_cmp expect actual
 '
 
 test_done