Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-08-28 00:33:49 +0300
committerJunio C Hamano <gitster@pobox.com>2018-08-28 00:33:49 +0300
commit99fb11d15b983abdda39b5bd5d16736c1550fe43 (patch)
tree76fc5ed437bc535e9aa062593ea18258fbcaeeb9 /t
parent56ce87daffe58135abcaf235f2dec008f5f4cb4d (diff)
parentb89b4a660cecc5555d48c9603b799f7393f23505 (diff)
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
Diffstat (limited to 't')
-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
'