From aa7dd38c77093294c1586f49783b0fde25e487a9 Mon Sep 17 00:00:00 2001 From: Isaac David Date: Sun, 15 Oct 2017 22:06:18 -0500 Subject: test-common.sh: fix quoting --- test/test-common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-common.sh b/test/test-common.sh index c0e8634..da19490 100755 --- a/test/test-common.sh +++ b/test/test-common.sh @@ -115,5 +115,5 @@ not() ( equals() { local stdin IFS= read -rd '' stdin || : - [[ $1 == $stdin ]] + [[ $1 == "$stdin" ]] } -- cgit v1.2.2