aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/simpleTests.py
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-05-24 09:29:24 +1000
committerNeil <nyamatongwe@gmail.com>2014-05-24 09:29:24 +1000
commit14483d14cbf29366f6f0839bd3683f3bfb8c046a (patch)
treeafa33b60e13299f20bad206ff28e6339d0f99d59 /test/simpleTests.py
parenta55a7b13deaaf1b19b82ecdbc997d3e457677e26 (diff)
downloadscintilla-mirror-14483d14cbf29366f6f0839bd3683f3bfb8c046a.tar.gz
Removing style byte indicators.
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")