From ad5f89ef3013d0ce8459cce364d60ec957ea2556 Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Tue, 19 Apr 2022 10:32:06 -0700 Subject: [PATCH] generic/019: fix incorrect unset statements Fix incorrect usage of unset -- one passes the name of the variable, not the *value* contained within it. Signed-off-by: Darrick J. Wong Reviewed-by: Zorro Lang Signed-off-by: Zorro Lang --- tests/generic/019 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/generic/019 b/tests/generic/019 index 854ba57d..45c91624 100755 --- a/tests/generic/019 +++ b/tests/generic/019 @@ -140,8 +140,8 @@ _workout() kill $fs_pid &> /dev/null wait $fs_pid wait $fio_pid - unset $fs_pid - unset $fio_pid + unset fs_pid + unset fio_pid # We expect that broken FS still can be umounted run_check _scratch_unmount -- 2.47.3