diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-09-07 09:38:57 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-09-07 09:39:08 +0000 |
commit | f0ae12072ba1868526f2ae57615538777d9538f4 (patch) | |
tree | f639c1078fc22f434d074470d7b50f58f0ac6e4e /test/utils.py | |
parent | Releasing debian version 1.25.0-1. (diff) | |
download | mycli-f0ae12072ba1868526f2ae57615538777d9538f4.tar.xz mycli-f0ae12072ba1868526f2ae57615538777d9538f4.zip |
Merging upstream version 1.26.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/utils.py')
-rw-r--r-- | test/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/utils.py b/test/utils.py index 66b4194..ab12248 100644 --- a/test/utils.py +++ b/test/utils.py @@ -41,8 +41,8 @@ dbtest = pytest.mark.skipif( def create_db(dbname): with db_connection().cursor() as cur: try: - cur.execute('''DROP DATABASE IF EXISTS _test_db''') - cur.execute('''CREATE DATABASE _test_db''') + cur.execute('''DROP DATABASE IF EXISTS mycli_test_db''') + cur.execute('''CREATE DATABASE mycli_test_db''') except: pass |