Test for exit code with command_error()
authorKarl Hasselström <kha@treskal.com>
Thu, 24 Jul 2008 20:46:56 +0000 (22:46 +0200)
committerKarl Hasselström <kha@treskal.com>
Thu, 24 Jul 2008 20:46:56 +0000 (22:46 +0200)
The helper function was made for occasions such as this, so use it.

Signed-off-by: Karl Hasselström <kha@treskal.com>
t/t1300-uncommit.sh

index a906d13..a657ead 100755 (executable)
@@ -79,7 +79,7 @@ test_expect_success \
 '
 
 test_expect_success 'Uncommit a commit with not precisely one parent' '
-    stg uncommit -n 5 ; [ $? = 2 ] &&
+    command_error stg uncommit -n 5  &&
     [ "$(echo $(stg series))" = "" ]
 '