summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2019-06-02 18:53:42 -0700
committerAmjith Ramanujam <amjith.r@gmail.com>2019-06-02 18:53:42 -0700
commit7da18ee794373fa23c692475ddb1493111544516 (patch)
treea865f15d6f9b625880d489b2c394d98d35211082 /tests
parent9abb4f8560b9d450167c3a3d514580841a645baa (diff)
Run black on test files.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_pgexecute.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_pgexecute.py b/tests/test_pgexecute.py
index c42bcee3..32e3bfbf 100644
--- a/tests/test_pgexecute.py
+++ b/tests/test_pgexecute.py
@@ -86,6 +86,7 @@ def test_bools_are_treated_as_strings(executor):
SELECT 1"""
)
+
@dbtest
def test_expanded_slash_G(executor, pgspecial):
# Tests whether we reset the expanded output after a \G.
@@ -94,6 +95,7 @@ def test_expanded_slash_G(executor, pgspecial):
results = run(executor, """select * from test \G""", pgspecial=pgspecial)
assert pgspecial.expanded_output == False
+
@dbtest
def test_schemata_table_views_and_columns_query(executor):
run(executor, "create table a(x text, y text)")