Fix trailing comma error

This commit is contained in:
Robin Fourcade
2019-12-04 17:21:22 +01:00
committed by Dave Halter
parent ee2995c110
commit e496b07b63
2 changed files with 13 additions and 1 deletions

View File

@@ -307,3 +307,15 @@ def test_invalid_fstrings(code, message):
"""
error, = _get_error_list(code, version='3.6')
assert message in error.message
@pytest.mark.parametrize(
'code', [
"from foo import (\nbar,\n rab,\n)",
"from foo import (bar, rab, )",
]
)
def test_trailing_comma(code):
errors = _get_error_list(code)
assert not errors