diff options
author | George Melikov <[email protected]> | 2017-04-03 22:06:04 +0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-04-03 11:06:04 -0700 |
commit | e55ebf6afdebec0e48c49ba912e02166bd6a3bc9 (patch) | |
tree | 0bd484fd3f93874fad9bdf51c900eda899f6dc82 /tests | |
parent | cb524aa23aa6f5bc4242e3b585a58bdd3292ae0f (diff) |
zfs_get_005_neg.ksh fix typos
`test_options_bookmark` function must have an `s` at the end.
Reviewed-by: Marcel Telka <[email protected]>
Reviewed-by: Giuseppe Di Natale <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: George Melikov <[email protected]>
Closes #5957
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_005_neg.ksh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_005_neg.ksh b/tests/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_005_neg.ksh index 71c48376b..4380e3852 100755 --- a/tests/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_005_neg.ksh +++ b/tests/zfs-tests/tests/functional/cli_root/zfs_get/zfs_get_005_neg.ksh @@ -133,11 +133,11 @@ create_bookmark $TESTPOOL/$TESTVOL $TESTSNAP $TESTBKMARK log_note "Valid options + invalid properties, 'zfs get' should fail." test_options "$val_opts_str" "$inval_props_str" -test_options_bookmark "$val_opts_str" "$inval_props_str" +test_options_bookmarks "$val_opts_str" "$inval_props_str" log_note "Invalid options + valid properties, 'zfs get' should fail." test_options "$inval_opts_str" "$val_props_str" -test_options_bookmark "$inval_opts_str" "$val_bookmark_props" +test_options_bookmarks "$inval_opts_str" "$val_bookmark_props" log_note "Invalid options + invalid properties, 'zfs get' should fail." test_options "$inval_opts_str" "$inval_props_str" |