diff options
Diffstat (limited to '')
-rw-r--r-- | tests/test_completion_engine.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_completion_engine.py b/tests/test_completion_engine.py index 84d5536..760f275 100644 --- a/tests/test_completion_engine.py +++ b/tests/test_completion_engine.py @@ -36,7 +36,9 @@ def test_order_by_suggests_cols_with_qualified_table_scope(): "SELECT * FROM sch.tabl ORDER BY ", "SELECT * FROM sch.tabl ORDER BY " ) assert sorted_dicts(suggestions) == sorted_dicts( - [{"type": "column", "tables": [("sch", "tabl", None)]},] + [ + {"type": "column", "tables": [("sch", "tabl", None)]}, + ] ) |