Merge branch 'jk/prune-top-level-refs-after-packing'
[gitweb.git] / t / t4055-diff-context.sh
index 97172b46b2afd52ca8f278f9525da01a56823e59..741e0803c1ac0a418c98c7eee9cb449a7c60da06 100755 (executable)
@@ -73,13 +73,13 @@ test_expect_success 'plumbing not affected' '
 test_expect_success 'non-integer config parsing' '
        git config diff.context no &&
        test_must_fail git diff 2>output &&
-       test_i18ngrep "bad config value" output
+       test_i18ngrep "bad numeric config value" output
 '
 
 test_expect_success 'negative integer config parsing' '
        git config diff.context -1 &&
        test_must_fail git diff 2>output &&
-       test_i18ngrep "bad config file" output
+       test_i18ngrep "bad config variable" output
 '
 
 test_expect_success '-U0 is valid, so is diff.context=0' '