From 784e53287e18c324dda9c4cc93b9aae4790eb909 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 22 Nov 2012 09:54:48 +0000 Subject: fish: Fix test-remote-events test. Because the shell script was missing a space, the final output test was failing, although for some reason this didn't cause the whole test to fail. Fixing the missing space also revealed a bug in the test output, which is also fixed. --- fish/test-remote-events.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/test-remote-events.sh b/fish/test-remote-events.sh index 978b2c73..41c2596c 100755 --- a/fish/test-remote-events.sh +++ b/fish/test-remote-events.sh @@ -35,7 +35,7 @@ fi # Test close event (RHBZ#802389). output="$(./guestfish --remote quit)" -if [ "$output" != '"closed"']; then +if [ "$output" != "closed" ]; then echo "$0: close event failed:" echo "$output" exit 1 -- cgit