aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/simpleTests.py
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2013-05-05 10:22:21 +1000
committernyamatongwe <devnull@localhost>2013-05-05 10:22:21 +1000
commitc71d1664a10a9db809a9be8d0cf6d5ebe7b2c877 (patch)
tree70b8666a2783df9b7b5ebd4756e63b0427672095 /test/simpleTests.py
parent2bd357c7fa827511dc6548142c32a27a972c4e1b (diff)
downloadscintilla-mirror-c71d1664a10a9db809a9be8d0cf6d5ebe7b2c877.tar.gz
Make test run on older version of Python.
Diffstat (limited to 'test/simpleTests.py')
-rw-r--r--test/simpleTests.py2
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")