summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Koljonen <koljonen@outlook.com>2017-08-07 03:50:29 +0200
committerJoakim Koljonen <koljonen@outlook.com>2017-08-07 03:55:44 +0200
commit0fdf0b0ea196c45fb579d02a88bb6ff0925b7bf7 (patch)
treef2a5f24e03dd10d604e0d7d8c183b07734c03b5b
parent64505a9e33ee857344893bab8bf8945f2cb18b00 (diff)
Make pep8radius happy
As usual: No idea why it's complaining, and its suggestion looks pretty awful, so let's just add random newlines and hope for the best.
-rw-r--r--tests/test_smart_completion_public_schema_only.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_smart_completion_public_schema_only.py b/tests/test_smart_completion_public_schema_only.py
index 45213f4e..cdfbaf57 100644
--- a/tests/test_smart_completion_public_schema_only.py
+++ b/tests/test_smart_completion_public_schema_only.py
@@ -150,7 +150,9 @@ def test_user_function_name_completion_matches_anywhere(completer):
@parametrize('completer', completers(casing=True))
def test_list_functions_for_special(completer):
result = result_set(completer, r'\df ')
- assert result == set([schema('PUBLIC')] + [function(f) for f in cased_func_names])
+ assert result == set(
+ [schema('PUBLIC')] + [function(f) for f in cased_func_names]
+ )
@parametrize('completer', completers(casing=False, qualify=no_qual))