tests/test-bdiff
changeset 7471 94ecd4922a23
parent 7104 9514cbb6e4f6
--- a/tests/test-bdiff	Sat Dec 06 14:27:31 2008 +0100
+++ b/tests/test-bdiff	Sat Dec 06 15:37:15 2008 +0100
@@ -9,13 +9,13 @@
     if d:
         c = mpatch.patches(a, [d])
     if c != b:
-        print "***", `a`, `b`
+        print "***", repr(a), repr(b)
         print "bad:"
-        print `c`[:200]
-        print `d`
+        print repr(c)[:200]
+        print repr(d)
 
 def test(a, b):
-    print "***", `a`, `b`
+    print "***", repr(a), repr(b)
     test1(a, b)
     test1(b, a)