diff options
Diffstat (limited to 't/t2103-update-index-ignore-missing.sh')
-rwxr-xr-x | t/t2103-update-index-ignore-missing.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t2103-update-index-ignore-missing.sh b/t/t2103-update-index-ignore-missing.sh index b304714fdb..e9451cd567 100755 --- a/t/t2103-update-index-ignore-missing.sh +++ b/t/t2103-update-index-ignore-missing.sh @@ -24,7 +24,7 @@ test_expect_success basics ' test_cmp expect actual && git update-index --add one two three && - for i in one three two; do echo $i; done >expect && + test_write_lines one three two >expect && git ls-files >actual && test_cmp expect actual && |