aboutsummaryrefslogtreecommitdiffstats
path: root/tests/richstring_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/richstring_test.py')
-rw-r--r--tests/richstring_test.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/richstring_test.py b/tests/richstring_test.py
index ee42087..82b2af0 100644
--- a/tests/richstring_test.py
+++ b/tests/richstring_test.py
@@ -3,7 +3,6 @@
# http://www.opensource.org/licenses/mit-license.php
from testcompat import TestCase
-import six
from screenplain.richstring import (
RichString, Segment,
Bold, Italic,
@@ -39,7 +38,7 @@ class RichStringOperatorTests(TestCase):
s = bold('Hello') + plain(' there ') + bold('folks')
self.assertEquals(
u'Hello there folks',
- six.text_type(s)
+ str(s)
)
def test_eq(self):