obstack.c: Fix some sparse warnings
[gitweb.git] / t / t7400-submodule-basic.sh
index c22916ddd91c8a2aee33b8a25f55def0c93b587b..69115269c2a284dcfc99abd2f7feb3d87f4e5bcc 100755 (executable)
@@ -102,7 +102,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_cmp expect actual
+               test_i18ncmp expect actual
        )
 '
 
@@ -361,7 +361,7 @@ test_expect_success 'update --init' '
 
        git submodule update init > update.out &&
        cat update.out &&
-       grep "not initialized" update.out &&
+       test_i18ngrep "not initialized" update.out &&
        ! test -d init/.git &&
 
        git submodule update --init init &&