tests: keys are no longer added to the dict

This commit is contained in:
Matthias
2025-06-22 11:29:45 +00:00
committed by GitHub
parent 3465f35d75
commit 822dce09b7

View File

@@ -1603,5 +1603,5 @@ def test_remove_exchange_credentials(default_conf) -> None:
remove_exchange_credentials(conf["exchange"], True)
assert conf["exchange"]["key"] == ""
assert conf["exchange"]["secret"] == ""
assert conf["exchange"]["password"] == ""
assert conf["exchange"]["uid"] == ""
assert conf["exchange"].get("password", "") == ""
assert conf["exchange"].get("uid", "") == ""