]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t7400-submodule-basic.sh
tests: remove most uses of test_i18ncmp
[thirdparty/git.git] / t / t7400-submodule-basic.sh
index d44f69629337f7e617d118e060550737ca92c59a..a924fdb7a6c9aaf6c1b860dd4c783d87b803c36f 100755 (executable)
@@ -55,7 +55,7 @@ test_expect_success 'add aborts on repository with no commits' '
        EOF
        git init repo-no-commits &&
        test_must_fail git submodule add ../a ./repo-no-commits 2>actual &&
-       test_i18ncmp expect actual
+       test_cmp expect actual
 '
 
 test_expect_success 'status should ignore inner git repo when not added' '
@@ -185,7 +185,7 @@ test_expect_success 'submodule add to .gitignored path fails' '
                git add --force .gitignore &&
                git commit -m"Ignore everything" &&
                ! git submodule add "$submodurl" submod >actual 2>&1 &&
-               test_i18ncmp expect actual
+               test_cmp expect actual
        )
 '