X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/3e022c8a41837e0894d017c4912b77e4b1792744..de8efe1efc4a495eca0614aa9f6c1910d5838f99:/t/t2700-refresh.sh diff --git a/t/t2700-refresh.sh b/t/t2700-refresh.sh index aad6d45..6028b9e 100755 --- a/t/t2700-refresh.sh +++ b/t/t2700-refresh.sh @@ -13,7 +13,7 @@ test_expect_success 'Initialize StGit stack' ' stg new p0 -m "base" && for i in 1 2 3; do echo base >> foo$i.txt && - git add foo$i.txt + stg add foo$i.txt done stg refresh && for i in 1 2 3; do @@ -104,7 +104,7 @@ test_expect_success 'Refresh --index' ' stg status && stg new p4 -m "refresh_index" && echo baz 1 >> foo1.txt && - git add foo1.txt && + stg add foo1.txt && echo blah 1 >> foo1.txt && echo baz 2 >> foo2.txt && stg refresh --index && @@ -119,7 +119,7 @@ test_expect_success 'Refresh --index' ' ' test_expect_success 'Refresh moved files' ' - git mv foo1.txt foo1-new.txt && + stg mv foo1.txt foo1-new.txt && stg refresh '