pytest-dev / nose2pytest

Scripts to convert Python Nose tests to PyTest
Other
38 stars 12 forks source link

Parenthesis around generator #2

Closed schollii closed 7 years ago

schollii commented 7 years ago

In: self.assertTrue(x for x in range(1)) Out should be: assert (x for x in range(1))