From 204943ff9b2af6ed5c5e135c7c412a6eec2586db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Fri, 13 May 2022 11:28:16 +0200 Subject: [PATCH] fixed last misspelling of backend config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index ccb82f7..d416f77 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -52,7 +52,7 @@ def pytest_addoption(parser): parser.addoption( '--database-backend', action='store', - default=os.environ.get('PLANETMINT_DATABASE_BACKEND', 'tarantool'), + default=os.environ.get('PLANETMINT_DATABASE_BACKEND', 'tarantool_db'), help='Defines the backend to use (available: {})'.format(backends), )