summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2015-01-27 23:12:15 -0800
committerAmjith Ramanujam <amjith.r@gmail.com>2015-01-27 23:12:15 -0800
commit27a363ee06d8c3e2faadeebf3031a3f1c71b46ad (patch)
tree177208ffb76f353ed3196c08d684f2c8d69a03f4
parent798c398b60a3ad2acfe04e2cc1d1585cfa817c2c (diff)
Fix broken tests.
-rw-r--r--tests/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 91093dec..9b7376f1 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -43,7 +43,7 @@ def run(executor, sql, join=False):
" Return string output for the sql to be run "
result = []
for rows, headers, status in executor.run(sql):
- result.extend(format_output(rows, headers, status))
+ result.extend(format_output(rows, headers, status, 'psql'))
if join:
result = '\n'.join(result)
return result