1
0
Fork 0

Fix broken tests.

This commit is contained in:
Amjith Ramanujam 2015-01-27 23:12:15 -08:00
parent 798c398b60
commit 27a363ee06
1 changed files with 1 additions and 1 deletions

View File

@ -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