diff options
author | Ryan Moeller <[email protected]> | 2019-10-11 12:50:46 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-10-11 09:50:46 -0700 |
commit | d96635a5c7ba539c2f56c245c662be5b914f93e1 (patch) | |
tree | a67548d11c4329c6476bc4c2b75b21738950ef69 /tests/zfs-tests | |
parent | 767f65cf73e98fdec25f67e3717694a4a7561d08 (diff) |
Clarify loop variable name in zfs copies test
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: John Kennedy <[email protected]>
Signed-off-by: Ryan Moeller <[email protected]>
Closes #9445
Diffstat (limited to 'tests/zfs-tests')
-rwxr-xr-x | tests/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_006_pos.ksh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_006_pos.ksh b/tests/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_006_pos.ksh index 5946bf596..4a3ef76de 100755 --- a/tests/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_006_pos.ksh +++ b/tests/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_006_pos.ksh @@ -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. " |