dannysepler / pytestify

Automatically convert unittests to pytest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

if the assert has nothing else on that line, combine w/ line after

dannysepler opened this issue · comments

self.assertEqual(
    a,
    b
)

currently becomes

assert \
    a == \
    b

but could be

assert a == \
    b

instead