From: Karl Hasselström Date: Sat, 8 Dec 2007 09:30:40 +0000 (+0100) Subject: Fix bashism X-Git-Tag: v0.14~5 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/f7a73141ca0db04818f958e68667f5b3f3019550 Fix bashism Signed-off-by: Karl Hasselström --- diff --git a/t/t1000-branch-create.sh b/t/t1000-branch-create.sh index f024501..fa51a24 100755 --- a/t/t1000-branch-create.sh +++ b/t/t1000-branch-create.sh @@ -14,7 +14,7 @@ test_expect_success \ 'Create a branch when the current one is not an StGIT stack' ' git branch origin && stg branch --create new origin && - test $(stg branch) == "new" + test $(stg branch) = "new" ' test_expect_success \