Clarify loop variable name in zfs copies test

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
Closes #9445
This commit is contained in:
Ryan Moeller 2019-10-11 12:50:46 -04:00 committed by Brian Behlendorf
parent 767f65cf73
commit d96635a5c7
1 changed files with 2 additions and 2 deletions

View File

@ -70,8 +70,8 @@ if [[ ! -d $mntp ]]; then
mkdir -p $mntp
fi
for val in 1 2 3; do
do_vol_test $NEWFS_DEFAULT_FS $val $mntp
for copies in 1 2 3; do
do_vol_test $NEWFS_DEFAULT_FS $copies $mntp
done
log_pass "The volume space used by multiple copies is charged correctly as expected. "