aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/simpleTests.py
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-05-31 09:27:48 +1000
committerNeil <nyamatongwe@gmail.com>2014-05-31 09:27:48 +1000
commit9bc61b338dfe63d2e6fcc66bc0933a0de6bcd31b (patch)
tree64c541e9dcb42c9999759ab7dd40d67c72749b9a /test/simpleTests.py
parent8326c658b392ba13e92918dd89deebd60bcd195f (diff)
parent8b447b76bbc110e055a0637657f5f00c65cc98dd (diff)
downloadscintilla-mirror-9bc61b338dfe63d2e6fcc66bc0933a0de6bcd31b.tar.gz
Merge 343-Win32-Fix which fixes hangs and crashes at shutdown on Windows.
Diffstat (limited to 'test/simpleTests.py')
-rw-r--r--test/simpleTests.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/simpleTests.py b/test/simpleTests.py
index 3ca01f569..2b92d1d66 100644
--- a/test/simpleTests.py
+++ b/test/simpleTests.py
@@ -57,10 +57,6 @@ class TestSimple(unittest.TestCase):
self.ed.StartStyling(0,0xf)
self.ed.SetStyling(1, 5)
self.assertEquals(self.ed.StyledTextRange(0, 2), b"x\005y\003")
- # Set the mask so 0 bit changed but not 2 bit
- self.ed.StartStyling(0,0x1)
- self.ed.SetStyling(1, 0)
- self.assertEquals(self.ed.StyledTextRange(0, 2), b"x\004y\003")
self.ed.StartStyling(0,0xff)
self.ed.SetStylingEx(2, b"\100\101")