summaryrefslogtreecommitdiff
path: root/Lib/test/test_tokenize.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-06-25 22:42:24 -0400
committerJason R. Coombs <jaraco@jaraco.com>2015-06-25 22:42:24 -0400
commitb6d1cdda8e2160ac647b39776198bf48dc7e656f (patch)
tree7f3e7205c63693d9e75705af88e35fb7e9298868 /Lib/test/test_tokenize.py
parent5713b3c5bf0c27d5443e6d3a1cd2ce3495778597 (diff)
downloadcpython-git-b6d1cdda8e2160ac647b39776198bf48dc7e656f.tar.gz
Issue #20387: Correct test to properly capture expectation.
Diffstat (limited to 'Lib/test/test_tokenize.py')
-rw-r--r--Lib/test/test_tokenize.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py
index 00a2c2b30b..6506b671a1 100644
--- a/Lib/test/test_tokenize.py
+++ b/Lib/test/test_tokenize.py
@@ -1233,7 +1233,7 @@ class TestRoundtrip(TestCase):
def roundtrip(self, code):
if isinstance(code, str):
code = code.encode('utf-8')
- return untokenize(tokenize(BytesIO(code).readline))
+ return untokenize(tokenize(BytesIO(code).readline)).decode('utf-8')
def test_indentation_semantics_retained(self):
"""
@@ -1241,7 +1241,7 @@ class TestRoundtrip(TestCase):
the semantic meaning of the indentation remains consistent.
"""
code = "if False:\n\tx=3\n\tx=3\n"
- codelines = roundtrip(code).split('\n')
+ codelines = self.roundtrip(code).split('\n')
self.assertEqual(codelines[1], codelines[2])