diff options
author | наб <[email protected]> | 2022-03-12 00:26:46 +0100 |
---|---|---|
committer | Tony Hutter <[email protected]> | 2023-01-19 12:50:36 -0800 |
commit | 6af8e8031086cc5a51b5f23495053f842af9b44d (patch) | |
tree | 1e0dbc0b54c83caec83a291c8b9a2a063092f68e /tests | |
parent | f8a124b104efc5e23c3646bc6231d6b38a17983d (diff) |
fgrep -> grep -F
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: John Kennedy <[email protected]>
Reviewed-by: Ryan Moeller <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes #13259
Diffstat (limited to 'tests')
-rw-r--r-- | tests/zfs-tests/tests/functional/cli_root/zpool_wait/zpool_wait.kshlib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/zfs-tests/tests/functional/cli_root/zpool_wait/zpool_wait.kshlib b/tests/zfs-tests/tests/functional/cli_root/zpool_wait/zpool_wait.kshlib index b413f6e9f..ccb979149 100644 --- a/tests/zfs-tests/tests/functional/cli_root/zpool_wait/zpool_wait.kshlib +++ b/tests/zfs-tests/tests/functional/cli_root/zpool_wait/zpool_wait.kshlib @@ -120,5 +120,5 @@ function check_while_waiting # Whether any vdev in the given pool is initializing function is_vdev_initializing # pool { - zpool status -i "$1" | grep 'initialized, started' >/dev/null + zpool status -i "$1" | grep -q 'initialized, started' } |