diff options
author | Johannes Sixt <j6t@kdbg.org> | 2014-08-13 21:30:11 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-08-13 13:12:06 -0700 |
commit | 41ca19b6a6ca5ad6fea246bd400717c16b80b32c (patch) | |
tree | 65be6351717770aabcf27fb693114f7122b890f2 /t/t9807-git-p4-submit.sh | |
parent | 67de23ddb1ed5471e302f6a84fae7a9037a0d980 (diff) | |
download | git-41ca19b6a6ca5ad6fea246bd400717c16b80b32c.tar.gz |
tests: fix negated test_i18ngrep calls
The helper function test_i18ngrep pretends that it found the expected
results when it is running under GETTEXT_POISON. For this reason, it must
not be used negated like so
! test_i18ngrep foo bar
because the test case would fail under GETTEXT_POISON. The function offers
a special syntax to test that a pattern is *not* found:
test_i18ngrep ! foo bar
Convert incorrect uses to this syntax.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9807-git-p4-submit.sh')
-rwxr-xr-x | t/t9807-git-p4-submit.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9807-git-p4-submit.sh b/t/t9807-git-p4-submit.sh index 7fab2ed977..1f74a88385 100755 --- a/t/t9807-git-p4-submit.sh +++ b/t/t9807-git-p4-submit.sh @@ -404,7 +404,7 @@ test_expect_success 'submit --prepare-p4-only' ' git p4 submit --prepare-p4-only >out && test_i18ngrep "prepared for submission" out && test_i18ngrep "must be deleted" out && - ! test_i18ngrep "everything below this line is just the diff" out + test_i18ngrep ! "everything below this line is just the diff" out ) && ( cd "$cli" && |