Skip to content

Commit c8d0c45

Browse files
committed
Fix bug with password
1 parent e936600 commit c8d0c45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebird/qa/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ def pytest_configure(config):
120120
_vars_['server'] = config.getoption('server')
121121
_vars_['bin-dir'] = config.getoption('bin_dir')
122122
_vars_['protocol'] = config.getoption('protocol')
123-
_vars_['password'] = config.getoption('password', 'masterkey')
124123
srv_conf = driver_config.get_server(_vars_['server'])
125124
_vars_['host'] = srv_conf.host.value if srv_conf is not None else ''
125+
_vars_['password'] = srv_conf.password.value
126126
#
127127
with connect_server(_vars_['server'], user='SYSDBA',
128128
password=_vars_['password']) as srv:

0 commit comments

Comments
 (0)