summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorIryna Cherniavska <i.chernyavska@gmail.com>2015-07-01 21:52:04 -0700
committerIryna Cherniavska <i.chernyavska@gmail.com>2015-07-01 21:52:04 -0700
commitcb9905a44e78b2fa257fc5308341a2d010a306c7 (patch)
tree8a780f338735c42095e01402ad08c84d19042019 /tests
parentb245e8e0d378344fa24a4ea94e9098fa842387cc (diff)
parente6236aca2bd3a5b7dbb13a6140f556a84b9289ab (diff)
Merge pull request #262 from dbcli/amjith/expanded_output_separator_fix
Make the horizontal separator in expanded mode a constant length.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_expanded.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_expanded.py b/tests/test_expanded.py
index 6f2c6591..4025dfa4 100644
--- a/tests/test_expanded.py
+++ b/tests/test_expanded.py
@@ -4,10 +4,10 @@ import pytest
def test_expanded_table_renders():
input = [("hello", 123),("world", 456)]
- expected = """-[ RECORD 0 ]
+ expected = """-[ RECORD 0 ]-------------------------
name | hello
age | 123
--[ RECORD 1 ]
+-[ RECORD 1 ]-------------------------
name | world
age | 456
"""