Replace some git commands with stg aliases in test scripts
[stgit] / t / t2701-refresh-p.sh
index d42e90f..3ba3b02 100755 (executable)
@@ -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
@@ -29,18 +29,18 @@ EOF
 cat > expected2.txt <<EOF
 A 2.txt
 EOF
-test_expect_failure 'Add new file to non-top patch' '
+test_expect_success 'Add new file to non-top patch' '
     stg status > status1.txt &&
-    diff -u expected0.txt 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 &&
-    diff -u expected0.txt status2.txt &&
+    test_cmp expected0.txt status2.txt &&
     stg files p1 > files1.txt &&
-    diff -u expected1.txt files1.txt &&
+    test_cmp expected1.txt files1.txt &&
     stg files p2 > files2.txt &&
-    diff -u expected2.txt files2.txt
+    test_cmp expected2.txt files2.txt
 '
 
 test_done