Skip to content

Commit

Permalink
Fix refquota_007_neg.ksh
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ikozhukhov authored and behlendorf committed Aug 30, 2019
1 parent 475aa97 commit d39c71d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d39c71d

Please sign in to comment.