ソースを参照

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

Matthew Wang 11 年 前
コミット
46d9e21076
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      tests/test_cdiff.py

+ 1
- 1
tests/test_cdiff.py ファイルの表示

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