]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t0091-bugreport: stop using i18ngrep
authorEmily Shaffer <nasamuffin@google.com>
Thu, 26 Oct 2023 18:22:30 +0000 (11:22 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 28 Oct 2023 23:55:48 +0000 (08:55 +0900)
Since e6545201ad (Merge branch 'ab/detox-config-gettext', 2021-04-13),
test_i18ngrep is no longer required. Quit using it in the bugreport
tests, since it's setting a bad example for tests added later.

Signed-off-by: Emily Shaffer <nasamuffin@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0091-bugreport.sh

index f6998269beb4fea3f68f14ffae22b541a066e6b3..e1588f71b7c69c5f17eeda4d744dda1b69642533 100755 (executable)
@@ -65,7 +65,7 @@ test_expect_success '--output-directory puts the report in the provided dir' '
 
 test_expect_success 'incorrect arguments abort with usage' '
        test_must_fail git bugreport --false 2>output &&
-       test_i18ngrep usage output &&
+       grep usage output &&
        test_path_is_missing git-bugreport-*
 '