diff options
author | Igor K <[email protected]> | 2019-08-30 19:32:25 +0300 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-08-30 09:32:25 -0700 |
commit | d39c71d3654f6546dc3374c7833610f51d036109 (patch) | |
tree | 0e0898abf0ccc53af5978a48d6e8065419bf5394 | |
parent | 475aa97cab771b3b2b9ddab03f5c14a1d4e985da (diff) |
Fix refquota_007_neg.ksh
Must use 'zfs' instead of '$ZFS' which is undefined.
Reviewed-by: John Kennedy <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Igor Kozhukhov <[email protected]>
Closes #9257
-rwxr-xr-x | tests/zfs-tests/tests/functional/refquota/refquota_007_neg.ksh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/zfs-tests/tests/functional/refquota/refquota_007_neg.ksh b/tests/zfs-tests/tests/functional/refquota/refquota_007_neg.ksh index e2141c7d7..4f0393883 100755 --- a/tests/zfs-tests/tests/functional/refquota/refquota_007_neg.ksh +++ b/tests/zfs-tests/tests/functional/refquota/refquota_007_neg.ksh @@ -38,9 +38,9 @@ verify_runnable "both" function cleanup { - log_must $ZFS destroy -rf $TESTPOOL/$TESTFS - log_must $ZFS create $TESTPOOL/$TESTFS - log_must $ZFS set mountpoint=$TESTDIR $TESTPOOL/$TESTFS + log_must zfs destroy -rf $TESTPOOL/$TESTFS + log_must zfs create $TESTPOOL/$TESTFS + log_must zfs set mountpoint=$TESTDIR $TESTPOOL/$TESTFS } log_onexit cleanup |