From e8f9ee64a71d788a8ed1e1d7d5715f248c4fa107 Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Thu, 2 Dec 2010 10:18:39 +0100 Subject: fix ѕome == to correct shell test in commented stuff MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/subunit/shell/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/subunit') diff --git a/lib/subunit/shell/README b/lib/subunit/shell/README index af894a2bd3..5f7cf37626 100644 --- a/lib/subunit/shell/README +++ b/lib/subunit/shell/README @@ -38,7 +38,7 @@ a manually written test using the bindings might look like: subunit_start_test "test name" # determine if test passes or fails result=$(something) -if [ $result == 0 ]; then +if [ $result -eq 0 ]; then subunit_pass_test "test name" else subunit_fail_test "test name" <