summaryrefslogtreecommitdiffstats
path: root/tests/test_smart_completion_multiple_schemata.py
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith@netflix.com>2021-05-07 12:43:32 -0700
committerAmjith Ramanujam <amjith@netflix.com>2021-05-07 12:43:32 -0700
commit898f8255e051ee6a64099723f21f31980ecdd380 (patch)
tree2235b0a531bdf4122431310a252a31139e85d9a1 /tests/test_smart_completion_multiple_schemata.py
parentc196c28e781b6abd9ff2359109528c883436870d (diff)
Blacken.
Diffstat (limited to 'tests/test_smart_completion_multiple_schemata.py')
-rw-r--r--tests/test_smart_completion_multiple_schemata.py8
1 files changed, 6 insertions, 2 deletions
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")),
+ ]
)