test/fetch: fix mising semi-colon in for-loop

This commit is contained in:
Taylor Blau 2016-06-18 11:55:02 -06:00
parent 271b16dad2
commit fe1aa74f70

@ -407,7 +407,7 @@ begin_test "fetch-all"
# Preform the same assertion as above, on the same data
git lfs fetch --all origin
for ((a=0 a < NUMFILES ; a++)); do
for ((a=0; a < NUMFILES ; a++)); do
assert_local_object "${oid[$a]}" "${#content[$a]}"
done
)