summaryrefslogtreecommitdiffstats
path: root/tests/test_main.py
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2017-11-30 19:52:21 -0800
committerIrina Truong <i.chernyavska@gmail.com>2017-11-30 19:52:21 -0800
commit9fe5993c1d7c62bdf817f86aeaef2c4743628a1b (patch)
tree21b2fa494e8674088984990a30735dfe1cace431 /tests/test_main.py
parent4093a8546b330bcbd257610ea6b27219af1615aa (diff)
Fixed expanded array test.
Diffstat (limited to 'tests/test_main.py')
-rw-r--r--tests/test_main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_main.py b/tests/test_main.py
index df99eb45..0fa8788f 100644
--- a/tests/test_main.py
+++ b/tests/test_main.py
@@ -110,7 +110,7 @@ def test_format_array_output_expanded(executor):
'配列 | {<null>}',
'SELECT 2'
]
- assert list(results) == expected
+ assert '\n'.join(results) == '\n'.join(expected)
def test_format_output_auto_expand():