From eb73207913915be7131256a1ed80d2402ecf6ad6 Mon Sep 17 00:00:00 2001 From: Martin Vilcans Date: Wed, 12 Feb 2020 23:21:51 +0100 Subject: Removing Python 2 support - no need for six #54 --- tests/richstring_test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests/richstring_test.py') 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): -- cgit v1.2.3