Explorar el Código

Fix an unit test fails in python 2.5 for issue #31

Matthew Wang hace 11 años
padre
commit
46d9e21076
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      tests/test_cdiff.py

+ 1
- 1
tests/test_cdiff.py Ver fichero

@@ -78,7 +78,7 @@ class DecodeTest(unittest.TestCase):
78 78
         self.assertEqual('hello', cdiff.decode(utext))
79 79
 
80 80
     def test_malformed_utf8(self):
81
-        text = b'\x80\x02q\x01(U'
81
+        text = '\x80\x02q\x01(U'
82 82
         self.assertEqual(text, cdiff.decode(text))
83 83
 
84 84