Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mscolnick committed Apr 1, 2024
1 parent 3690c6a commit ffbd19b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/_config/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def test_remove_secret_placeholders() -> None:
assert config["ai"]["open_ai"]["api_key"] == "********"

new_config = remove_secret_placeholders(config)
assert new_config["ai"]["open_ai"]["api_key"] is None
assert "api_key" not in new_config["ai"]["open_ai"]

# Ensure the original config is not modified
assert config["ai"]["open_ai"]["api_key"] == "********"

0 comments on commit ffbd19b

Please sign in to comment.