t3404: become resilient to GETTEXT_POISON
authorVasco Almeida <vascomalmeida@sapo.pt>
Fri, 12 Aug 2016 11:59:00 +0000 (11:59 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 12 Aug 2016 22:12:33 +0000 (15:12 -0700)
The concerned test greps the output of exit_with_patch() in
git-rebase--interactive.sh script.

Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3404-rebase-interactive.sh
index 197914bbd8f36097a6f25e85470a0b2725fac193..597e94e294d9dc949695867be295af333bf8f0fe 100755 (executable)
@@ -1286,7 +1286,7 @@ test_expect_success 'rebase -i --gpg-sign=<key-id>' '
        set_fake_editor &&
        FAKE_LINES="edit 1" git rebase -i --gpg-sign="\"S I Gner\"" HEAD^ \
                >out 2>err &&
-       grep "$SQ-S\"S I Gner\"$SQ" err
+       test_i18ngrep "$SQ-S\"S I Gner\"$SQ" err
 '
 
 test_done