diff tests/test-push @ 244:ea0728d8cdc2

tests: work around output changes in newer git versions In particular, newer gits no longer show ... in merged revisions, use ' instead of " when checking out a branch, and changed the output format of commit information completely.
author Augie Fackler <durin42@gmail.com>
date Tue, 11 Aug 2009 00:13:37 -0400
parents 51e4d6ebbc40
children 8b9fc1b1cc40
line wrap: on
line diff
--- a/tests/test-push
+++ b/tests/test-push
@@ -72,7 +72,7 @@
 git branch -v
 
 echo % some more work on master from git
-git checkout master
+git checkout master 2>&1 | sed s/\'/\"/g
 echo delta > delta
 git add delta
 commit -m "add delta"