1
0
Fork 0
This commit is contained in:
Amjith Ramanujam 2021-05-07 12:43:32 -07:00
parent c196c28e78
commit 898f8255e0
2 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black
rev: stable
rev: 21.5b0
hooks:
- id: black
language_version: python3.7

View File

@ -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")),
]
)