summaryrefslogtreecommitdiffstats
path: root/tests/test_sqlexecute.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-11 12:10:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-11 12:10:20 +0000
commitaf35234f452fde58f2a445b656c7cd334368b301 (patch)
treeb4035453c237a13cfddcc23c1bd1c299df88da22 /tests/test_sqlexecute.py
parentReleasing debian version 1.11.1-1. (diff)
downloadlitecli-af35234f452fde58f2a445b656c7cd334368b301.tar.xz
litecli-af35234f452fde58f2a445b656c7cd334368b301.zip
Merging upstream version 1.12.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/test_sqlexecute.py')
-rw-r--r--tests/test_sqlexecute.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/test_sqlexecute.py b/tests/test_sqlexecute.py
index cd56683..0181b2c 100644
--- a/tests/test_sqlexecute.py
+++ b/tests/test_sqlexecute.py
@@ -274,8 +274,7 @@ def test_favorite_query_multiple_statement(executor):
results = run(
executor,
- "\\fs test-ad select * from test where a like 'a%'; "
- "select * from test where a like 'd%'",
+ "\\fs test-ad select * from test where a like 'a%'; " "select * from test where a like 'd%'",
)
assert_result_equal(results, status="Saved.")
@@ -346,9 +345,7 @@ def test_cd_command_without_a_folder_name(executor):
@dbtest
def test_system_command_not_found(executor):
results = run(executor, "system xyz")
- assert_result_equal(
- results, status="OSError: No such file or directory", assert_contains=True
- )
+ assert_result_equal(results, status="OSError: No such file or directory", assert_contains=True)
@dbtest