summaryrefslogtreecommitdiff
path: root/t/t5302-pack-index.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2020-08-13 14:13:39 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2020-08-13 14:13:39 -0700
commit0a41a89306b041fa27a8de2b2ffe15029351f542 (patch)
tree5e4d680b7f3e4a23101249fb5029f00a44cfb8c4 /t/t5302-pack-index.sh
parentMerge branch 'jt/has_object' (diff)
parentt4104: modernize and simplify quoting (diff)
downloadtgif-0a41a89306b041fa27a8de2b2ffe15029351f542.tar.xz
Merge branch 'ma/test-quote-cleanup'
Test cleanup. * ma/test-quote-cleanup: t4104: modernize and simplify quoting t: don't spuriously close and reopen quotes
Diffstat (limited to 't/t5302-pack-index.sh')
-rwxr-xr-xt/t5302-pack-index.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5302-pack-index.sh b/t/t5302-pack-index.sh
index 119494bd64..c92e553a2f 100755
--- a/t/t5302-pack-index.sh
+++ b/t/t5302-pack-index.sh
@@ -14,7 +14,7 @@ test_expect_success 'setup' '
i=1 &&
while test $i -le 100
do
- iii=$(printf '%03i' $i)
+ iii=$(printf "%03i" $i)
test-tool genrandom "bar" 200 > wide_delta_$iii &&
test-tool genrandom "baz $iii" 50 >> wide_delta_$iii &&
test-tool genrandom "foo"$i 100 > deep_delta_$iii &&