diff options
Diffstat (limited to 'tests/test_irc_formatter.py')
-rw-r--r-- | tests/test_irc_formatter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_irc_formatter.py b/tests/test_irc_formatter.py index 6dc43b7d..f93bbad4 100644 --- a/tests/test_irc_formatter.py +++ b/tests/test_irc_formatter.py @@ -20,4 +20,4 @@ def test_correct_output(): houtfile = StringIO() hfmt.format(tokensource, houtfile) - assert u'\x0302lambda\x03 x: \x0302123\x03\n' == houtfile.getvalue() + assert '\x0302lambda\x03 x: \x0302123\x03\n' == houtfile.getvalue() |