From 898f8255e051ee6a64099723f21f31980ecdd380 Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Fri, 7 May 2021 12:43:32 -0700 Subject: Blacken. --- tests/test_smart_completion_multiple_schemata.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'tests/test_smart_completion_multiple_schemata.py') diff --git a/tests/test_smart_completion_multiple_schemata.py b/tests/test_smart_completion_multiple_schemata.py index 031e0301..5c9c9af4 100644 --- a/tests/test_smart_completion_multiple_schemata.py +++ b/tests/test_smart_completion_multiple_schemata.py @@ -355,7 +355,9 @@ def test_schema_qualified_function_name_after_from(completer): text = "SELECT * FROM custom.set_r" result = get_result(completer, text) assert completions_to_set(result) == completions_to_set( - [function("set_returning_func()", -len("func")),] + [ + function("set_returning_func()", -len("func")), + ] ) @@ -372,7 +374,9 @@ def test_unqualified_function_name_in_search_path(completer): text = "SELECT * FROM set_r" result = get_result(completer, text) assert completions_to_set(result) == completions_to_set( - [function("set_returning_func()", -len("func")),] + [ + function("set_returning_func()", -len("func")), + ] ) -- cgit v1.2.3