diff options
author | nyamatongwe <devnull@localhost> | 2013-05-05 10:22:21 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-05-05 10:22:21 +1000 |
commit | c71d1664a10a9db809a9be8d0cf6d5ebe7b2c877 (patch) | |
tree | 70b8666a2783df9b7b5ebd4756e63b0427672095 | |
parent | 2bd357c7fa827511dc6548142c32a27a972c4e1b (diff) | |
download | scintilla-mirror-c71d1664a10a9db809a9be8d0cf6d5ebe7b2c877.tar.gz |
Make test run on older version of Python.
-rw-r--r-- | test/simpleTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/simpleTests.py b/test/simpleTests.py index 464a97429..638634b05 100644 --- a/test/simpleTests.py +++ b/test/simpleTests.py @@ -512,7 +512,7 @@ class TestSimple(unittest.TestCase): self.ed.SetSel(0, 0) self.ed.Paste() self.ed.EOLMode = lineEndType - self.assertEquals(self.ed.Contents(), "a1\na1\nb2") + self.assertEquals(self.ed.Contents(), b"a1\na1\nb2") def testDuplicate(self): self.ed.AddText(3, b"1b2") |