diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-02-08 11:28:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-02-08 11:28:55 +0000 |
commit | 12ffec7e2e719776343027f9fbdd0d070d3ff68c (patch) | |
tree | 6eeb1a166346e9f319fd3056974c5783d3428506 /test/test_sqlexecute.py | |
parent | Adding debian version 1.22.2-0.1. (diff) | |
download | mycli-12ffec7e2e719776343027f9fbdd0d070d3ff68c.tar.xz mycli-12ffec7e2e719776343027f9fbdd0d070d3ff68c.zip |
Merging upstream version 1.23.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/test_sqlexecute.py')
-rw-r--r-- | test/test_sqlexecute.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_sqlexecute.py b/test/test_sqlexecute.py index c2d38be..5168bf6 100644 --- a/test/test_sqlexecute.py +++ b/test/test_sqlexecute.py @@ -166,7 +166,7 @@ def test_favorite_query_expanded_output(executor): results = run(executor, "\\fs test-ae select * from test") assert_result_equal(results, status='Saved.') - results = run(executor, "\\f test-ae \G") + results = run(executor, "\\f test-ae \\G") assert is_expanded_output() is True assert_result_equal(results, title='> select * from test', headers=['a'], rows=[('abc',)], auto_status=False) |