diff options
Diffstat (limited to 't/t4105-apply-fuzz.sh')
-rwxr-xr-x | t/t4105-apply-fuzz.sh | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/t/t4105-apply-fuzz.sh b/t/t4105-apply-fuzz.sh index 76e2c01b0f..ed814a839e 100755 --- a/t/t4105-apply-fuzz.sh +++ b/t/t4105-apply-fuzz.sh @@ -17,15 +17,9 @@ dotest () { test_expect_success setup ' - for i in 1 2 3 4 5 6 7 8 9 10 11 12 - do - echo $i - done >file && + test_write_lines 1 2 3 4 5 6 7 8 9 10 11 12 >file && git update-index --add file && - for i in 1 2 3 4 5 6 7 a b c d e 8 9 10 11 12 - do - echo $i - done >file && + test_write_lines 1 2 3 4 5 6 7 a b c d e 8 9 10 11 12 >file && cat file >expect && git diff >O0.diff && |