summaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
authorFoxygrandpa <terkel919@gmail.com>2016-09-27 13:43:05 +0300
committerFoxygrandpa <terkel919@gmail.com>2016-09-27 13:43:28 +0300
commit0ef94c984b33a04de6b714343df156ae64b0d1b0 (patch)
tree09477b774d95892b8efbd9720301a0e2df85c25f /tests/utils.py
parentfa4ebb5660519161c3342b13b23c0399f31539b5 (diff)
master: decimal and float format in config file
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 1f515add..2f17020b 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -66,7 +66,7 @@ def run(executor, sql, join=False, expanded=False, pgspecial=None,
formatted = []
for title, rows, headers, status, sql, success in results:
- formatted.extend(format_output(title, rows, headers, status, 'psql',
+ formatted.extend(format_output(title, rows, headers, status, 'psql', dcmlfmt='d', floatfmt='g',
expanded=expanded))
if join:
formatted = '\n'.join(formatted)