mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-01-26 17:00:23 +00:00
tests: keys are no longer added to the dict
This commit is contained in:
@@ -1603,5 +1603,5 @@ def test_remove_exchange_credentials(default_conf) -> None:
|
|||||||
remove_exchange_credentials(conf["exchange"], True)
|
remove_exchange_credentials(conf["exchange"], True)
|
||||||
assert conf["exchange"]["key"] == ""
|
assert conf["exchange"]["key"] == ""
|
||||||
assert conf["exchange"]["secret"] == ""
|
assert conf["exchange"]["secret"] == ""
|
||||||
assert conf["exchange"]["password"] == ""
|
assert conf["exchange"].get("password", "") == ""
|
||||||
assert conf["exchange"]["uid"] == ""
|
assert conf["exchange"].get("uid", "") == ""
|
||||||
|
|||||||
Reference in New Issue
Block a user