mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-07 05:14:29 +08:00
Fix trailing comma error
This commit is contained in:
committed by
Dave Halter
parent
ee2995c110
commit
e496b07b63
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user