diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-08-27 14:33:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-08-27 14:33:49 -0700 |
commit | 99fb11d15b983abdda39b5bd5d16736c1550fe43 (patch) | |
tree | 76fc5ed437bc535e9aa062593ea18258fbcaeeb9 | |
parent | Merge branch 'sg/t3420-autostash-fix' (diff) | |
parent | t6018-rev-list-glob: fix 'empty stdin' test (diff) | |
download | tgif-99fb11d15b983abdda39b5bd5d16736c1550fe43.tar.xz |
Merge branch 'ab/test-must-be-empty-for-master'
Test fixes.
* ab/test-must-be-empty-for-master:
t6018-rev-list-glob: fix 'empty stdin' test
-rwxr-xr-x | t/t6018-rev-list-glob.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t6018-rev-list-glob.sh b/t/t6018-rev-list-glob.sh index 02936c2f24..0bf10d0686 100755 --- a/t/t6018-rev-list-glob.sh +++ b/t/t6018-rev-list-glob.sh @@ -256,7 +256,7 @@ test_expect_success 'rev-list accumulates multiple --exclude' ' ' test_expect_failure 'rev-list should succeed with empty output on empty stdin' ' - git rev-list --stdin <expect >actual && + git rev-list --stdin </dev/null >actual && test_must_be_empty actual ' |