diff options
Diffstat (limited to 'tests/tail-2')
-rwxr-xr-x | tests/tail-2/assert | 2 | ||||
-rwxr-xr-x | tests/tail-2/assert-2 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/tail-2/assert b/tests/tail-2/assert index 37b9afbcf..043e25937 100755 --- a/tests/tail-2/assert +++ b/tests/tail-2/assert @@ -51,7 +51,7 @@ mv f foo # echo waiting.... wait -case "`cat err`" in +case "$(cat err)" in *$ok) ;; *) fail=1;; esac diff --git a/tests/tail-2/assert-2 b/tests/tail-2/assert-2 index e6c95f824..d94d3d8e2 100755 --- a/tests/tail-2/assert-2 +++ b/tests/tail-2/assert-2 @@ -39,7 +39,7 @@ mv f foo # echo waiting.... wait -case "`cat err`" in +case "$(cat err)" in *$ok) ;; *) fail=1;; esac |