Teach merge.log to "git-merge" again
[gitweb.git] / t / t3903-stash.sh
index aa282e1bc1e17f08dd12fc1980187c786f1de99b..54d99ed0c3864e464740833f16833ce6458f731f 100755 (executable)
@@ -34,14 +34,14 @@ EOF
 test_expect_success 'parents of stash' '
        test $(git rev-parse stash^) = $(git rev-parse HEAD) &&
        git diff stash^2..stash > output &&
-       diff -u output expect
+       test_cmp output expect
 '
 
 test_expect_success 'apply needs clean working directory' '
        echo 4 > other-file &&
        git add other-file &&
        echo 5 > other-file &&
-       test_must_fail git stash apply
+       test_must_fail git stash apply
 '
 
 test_expect_success 'apply stashed changes' '