diff options
author | Johannes Sixt <j6t@kdbg.org> | 2014-06-02 09:06:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-02 11:05:33 -0700 |
commit | 644edd02c192bcdb0419dd40ce95cf41fe8fd446 (patch) | |
tree | de9fca8e9d0d0dff1da6543ea30d2b7f342876ac /t | |
parent | d952cbb1908b54c6a04f37c8b0924a49cdb5997d (diff) | |
download | git-644edd02c192bcdb0419dd40ce95cf41fe8fd446.tar.gz git-644edd02c192bcdb0419dd40ce95cf41fe8fd446.tar.xz |
fix brown paper bag breakage in t5150-request-pull.sh
The recent addition to the test case 'pull request format' interrupted
the single-quoted text, effectively adding a third argument to the
test_expect_success command. Since we do not have a prerequisite named
"pull request format", the test is skipped, no matter what. Additionally,
the file name argument to the grep command is missing. Fix both issues.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t5150-request-pull.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5150-request-pull.sh b/t/t5150-request-pull.sh index 93e2c65de..82c33b88e 100755 --- a/t/t5150-request-pull.sh +++ b/t/t5150-request-pull.sh @@ -229,7 +229,7 @@ test_expect_success 'pull request format' ' cd local && git request-pull initial "$downstream_url" full ) >request && - grep ' tags/full$' + grep " tags/full\$" request ' test_expect_success 'request-pull ignores OPTIONS_KEEPDASHDASH poison' ' |