fix Ń•ome == to correct shell test in commented stuff
[ira/wip.git] / lib / subunit / shell / README
index af894a2bd3ea2632588b9da0f14dd38810e028dd..5f7cf3762633484f8c2a6d7cdc20dd3c952de8a5 100644 (file)
@@ -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" <<END