aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2013-05-05 10:22:21 +1000
committernyamatongwe <unknown>2013-05-05 10:22:21 +1000
commit165bb0f96f100ebd04bb05589995f84a2b15ed14 (patch)
treed4d60b371d9cd7e8fd1d6f00b2ca98e959d47709
parent022f16f9531e66d873b96c723ef949a9f31af3be (diff)
downloadscintilla-mirror-165bb0f96f100ebd04bb05589995f84a2b15ed14.tar.gz
Make test run on older version of Python.
-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")