X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/3faeaeb18acf7653134371a98364d195ca28ed31..ca8b854cbf353ed87fd9284d50f69229bf40e22d:/t/t1600-delete-one.sh diff --git a/t/t1600-delete-one.sh b/t/t1600-delete-one.sh index d59d4ba..df03d79 100755 --- a/t/t1600-delete-one.sh +++ b/t/t1600-delete-one.sh @@ -82,15 +82,6 @@ test_expect_success \ ' test_expect_success \ - 'Hide the topmost patch and try to delete it' \ - ' - [ $(stg applied | wc -l) -eq 2 ] && - stg hide bar && - stg delete bar && - [ $(stg applied | wc -l) -eq 1 ] - ' - -test_expect_success \ 'Create another branch, and put one patch in each branch' \ ' stg branch --create br && @@ -108,10 +99,10 @@ test_expect_success \ test_expect_success \ 'Delete a patch in another branch' \ ' - [ $(stg applied | wc -l) -eq 2 ] && + [ $(stg applied | wc -l) -eq 3 ] && [ $(stg applied -b br | wc -l) -eq 1 ] && stg delete -b br baz && - [ $(stg applied | wc -l) -eq 2 ] && + [ $(stg applied | wc -l) -eq 3 ] && [ $(stg applied -b br | wc -l) -eq 0 ] '