chiark / gitweb /
Remove the applied/unapplied commands
[stgit] / t / t1003-new.sh
index 0be5d9b21f6f9b4f2684f16544ee8b969a849a0e..826e41d85b78ee0c9d75bb4d7f4e5811d28f9ffa 100755 (executable)
@@ -17,13 +17,13 @@ test_expect_success \
 test_expect_success \
     'Create a named patch' '
     stg new foo -m foobar &&
-    [ $(stg applied -c) -eq 1 ]
+    [ $(stg series --applied -c) -eq 1 ]
 '
 
 test_expect_success \
     'Create a patch without giving a name' '
     stg new -m yo &&
-    [ $(stg applied -c) -eq 2 ]
+    [ $(stg series --applied -c) -eq 2 ]
 '
 
 test_done