X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/blobdiff_plain/860d288db5f555a00a27a05bffd9b19fda154ccb..fea352bf7a4ee0e841ada64caa34d34b614760f9:/t/t1300-uncommit.sh diff --git a/t/t1300-uncommit.sh b/t/t1300-uncommit.sh index 497c354..519234e 100755 --- a/t/t1300-uncommit.sh +++ b/t/t1300-uncommit.sh @@ -42,7 +42,7 @@ test_expect_success \ 'Uncommit the patches using names' \ ' stg uncommit bar foo && - [ "$(stg id foo//top)" == "$(stg id bar//bottom)" ] && + [ "$(stg id foo//top)" = "$(stg id bar//bottom)" ] && stg commit ' @@ -50,7 +50,7 @@ test_expect_success \ 'Uncommit the patches using prefix' \ ' stg uncommit --number=2 foobar && - [ "$(stg id foobar1//top)" == "$(stg id foobar2//bottom)" ] && + [ "$(stg id foobar1//top)" = "$(stg id foobar2//bottom)" ] && stg commit ' @@ -58,7 +58,7 @@ test_expect_success \ 'Uncommit the patches using auto names' \ ' stg uncommit --number=2 && - [ "$(stg id foo-patch//top)" == "$(stg id bar-patch//bottom)" ] && + [ "$(stg id foo-patch//top)" = "$(stg id bar-patch//bottom)" ] && stg commit ' @@ -67,7 +67,7 @@ test_expect_success \ ' stg uncommit && stg uncommit && - [ "$(stg id foo-patch//top)" == "$(stg id bar-patch//bottom)" ] && + [ "$(stg id foo-patch//top)" = "$(stg id bar-patch//bottom)" ] && stg commit ' test_done