Kaydet (Commit) b6d1cdda authored tarafından Jason R. Coombs's avatar Jason R. Coombs

Issue #20387: Correct test to properly capture expectation.

üst 5713b3c5
...@@ -1233,7 +1233,7 @@ class TestRoundtrip(TestCase): ...@@ -1233,7 +1233,7 @@ class TestRoundtrip(TestCase):
def roundtrip(self, code): def roundtrip(self, code):
if isinstance(code, str): if isinstance(code, str):
code = code.encode('utf-8') 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): def test_indentation_semantics_retained(self):
""" """
...@@ -1241,7 +1241,7 @@ class TestRoundtrip(TestCase): ...@@ -1241,7 +1241,7 @@ class TestRoundtrip(TestCase):
the semantic meaning of the indentation remains consistent. the semantic meaning of the indentation remains consistent.
""" """
code = "if False:\n\tx=3\n\tx=3\n" 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]) self.assertEqual(codelines[1], codelines[2])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment