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
commitaff335283c4ea47a38375ef6950ee2c285ddee70 (patch)
tree75a325ff0bef9f0bf7c121774fd8067fb869ac6b /test/simpleTests.py
parent524a5429eaae34e45769c39e44f1c7c10b1c5eff (diff)
downloadscintilla-mirror-aff335283c4ea47a38375ef6950ee2c285ddee70.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")