X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/a1d6a0811bac0329f50ffa4742cf7894390104bf..c7506039d0299c093140857b7a617ec6bcdbfc13:/t/t2701-refresh-p.sh diff --git a/t/t2701-refresh-p.sh b/t/t2701-refresh-p.sh index ed4bac4..3ba3b02 100755 --- a/t/t2701-refresh-p.sh +++ b/t/t2701-refresh-p.sh @@ -15,7 +15,7 @@ test_expect_success 'Initialize StGit stack' ' stg init && for i in 1 2; do echo x > $i.txt && - git add $i.txt && + stg add $i.txt && stg new p$i -m "Patch $i" && stg refresh done @@ -33,7 +33,7 @@ test_expect_success 'Add new file to non-top patch' ' stg status > status1.txt && test_cmp expected0.txt status1.txt && echo y > new.txt && - git add new.txt && + stg add new.txt && stg refresh -p p1 && stg status > status2.txt && test_cmp expected0.txt status2.txt &&