fixed last misspelling of backend config

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2022-05-13 11:28:16 +02:00
parent ec9bc83f5a
commit 204943ff9b

View File

@ -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),
)