X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/f837ca5e48bcd894b907e6426bbde06742f9378e..de8efe1efc4a495eca0614aa9f6c1910d5838f99:/t/t2702-refresh-rm.sh diff --git a/t/t2702-refresh-rm.sh b/t/t2702-refresh-rm.sh index 896ebf3..fa81cee 100755 --- a/t/t2702-refresh-rm.sh +++ b/t/t2702-refresh-rm.sh @@ -20,7 +20,7 @@ test_expect_success 'Initialize StGit stack' ' stg init && echo x > x.txt && echo y > y.txt && - git add x.txt y.txt && + stg add x.txt y.txt && git commit -m "Add some files" ' @@ -28,9 +28,9 @@ cat > expected0.txt < expected1.txt -test_expect_success 'git-rm a file' ' +test_expect_success 'stg rm a file' ' stg new -m p0 && - git rm y.txt && + stg rm y.txt && stg status > status0.txt && test_cmp expected0.txt status0.txt && stg refresh && @@ -47,10 +47,10 @@ D y.txt M x.txt EOF printf '' > expected1.txt -test_expect_success 'git-rm a file together with other changes' ' +test_expect_success 'stg rm a file together with other changes' ' stg new -m p1 && echo x2 >> x.txt && - git rm y.txt && + stg rm y.txt && stg status > status0.txt && test_cmp expected0.txt status0.txt && stg refresh &&