Fix some style nits in tests

Mostly whitespace changes, no functional changes intended.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
Closes #9447
This commit is contained in:
Ryan Moeller
2019-10-11 12:49:48 -04:00
committed by Brian Behlendorf
parent 715c996d3b
commit 767f65cf73
7 changed files with 15 additions and 17 deletions
@@ -401,18 +401,17 @@ set -A local_val "off" "on" "off" \
#
# Add system specific values
#
if ! is_linux; then
if is_linux; then
prop+=("acltype" "")
def_val+=("off")
local_val+=("off")
else
prop+=("aclmode" "" \
"mountpoint" "")
def_val+=("discard" \
"")
local_val+=("groupmask" \
"$TESTDIR")
else
prop+=("acltype" "")
def_val+=("off")
local_val+=("off")
fi