This commit is contained in:
Brett Cannon 2016-09-09 11:19:16 -07:00
commit 6982a4f8f0
1 changed files with 3 additions and 2 deletions

View File

@ -293,8 +293,9 @@ class DirectoryTestCase(ASTTestCase):
print(f'Skipping {filename}: see issue 27921')
continue
source = read_pyfile(filename)
self.check_roundtrip(source)
with self.subTest(filename=filename):
source = read_pyfile(filename)
self.check_roundtrip(source)
if __name__ == '__main__':