1
1
mirror of https://github.com/dbcli/pgcli.git synced 2024-10-06 10:17:15 +03:00

Fixed copypaste that should not have been checked in.

This commit is contained in:
Irina Truong 2017-06-10 16:37:52 -07:00
parent aea44a67fc
commit 422ea6e649

View File

@ -861,14 +861,6 @@ def test_keyword_after_alter(completer):
assert expected in set(completions)
@parametrize('completer', completers())
def test_set_statement(completer):
text = ('SET ')
result = result_set(completer, text)
expected = set([schema(u"'public'")])
assert result == expected
@parametrize('completer', completers())
def test_set_schema(completer):
text = ('SET SCHEMA ')