]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t0018-advice.sh
Merge branch 'ab/detox-gettext-tests'
[thirdparty/git.git] / t / t0018-advice.sh
index e03554d2f3457b354aa4035d446ffb856061e9a3..39e5e4b34f8729e361f7cc7801dadb4db6d6c76b 100755 (executable)
@@ -10,7 +10,7 @@ test_expect_success 'advice should be printed when config variable is unset' '
        hint: Disable this message with "git config advice.nestedTag false"
        EOF
        test-tool advise "This is a piece of advice" 2>actual &&
-       test_i18ncmp expect actual
+       test_cmp expect actual
 '
 
 test_expect_success 'advice should be printed when config variable is set to true' '
@@ -20,7 +20,7 @@ test_expect_success 'advice should be printed when config variable is set to tru
        EOF
        test_config advice.nestedTag true &&
        test-tool advise "This is a piece of advice" 2>actual &&
-       test_i18ncmp expect actual
+       test_cmp expect actual
 '
 
 test_expect_success 'advice should not be printed when config variable is set to false' '