We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac71310 commit 9f6f5b2Copy full SHA for 9f6f5b2
Lib/test/test_ast/test_ast.py
@@ -3203,11 +3203,10 @@ def invoke_ast(self, *flags):
3203
return stdout.getvalue().strip()
3204
3205
def check_output(self, source, expect, *flags):
3206
- with self.subTest(source=source, flags=flags):
3207
- self.set_source(source)
3208
- res = self.invoke_ast(*flags)
3209
- expect = self.text_normalize(expect)
3210
- self.assertEqual(res, expect)
+ self.set_source(source)
+ res = self.invoke_ast(*flags)
+ expect = self.text_normalize(expect)
+ self.assertEqual(res, expect)
3211
3212
def test_invocation(self):
3213
# test various combinations of parameters
0 commit comments