summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2018-08-27 14:33:49 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-08-27 14:33:49 -0700
commit99fb11d15b983abdda39b5bd5d16736c1550fe43 (patch)
tree76fc5ed437bc535e9aa062593ea18258fbcaeeb9
parentMerge branch 'sg/t3420-autostash-fix' (diff)
parentt6018-rev-list-glob: fix 'empty stdin' test (diff)
downloadtgif-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-xt/t6018-rev-list-glob.sh2
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
'