We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3465f35 commit 822dce0Copy full SHA for 822dce0
tests/test_configuration.py
@@ -1603,5 +1603,5 @@ def test_remove_exchange_credentials(default_conf) -> None:
1603
remove_exchange_credentials(conf["exchange"], True)
1604
assert conf["exchange"]["key"] == ""
1605
assert conf["exchange"]["secret"] == ""
1606
- assert conf["exchange"]["password"] == ""
1607
- assert conf["exchange"]["uid"] == ""
+ assert conf["exchange"].get("password", "") == ""
+ assert conf["exchange"].get("uid", "") == ""
0 commit comments