Procházet zdrojové kódy

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

Matthew Wang před 11 roky
rodič
revize
46d9e21076
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      tests/test_cdiff.py

+ 1
- 1
tests/test_cdiff.py Zobrazit soubor

@@ -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