Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasgameiroborges committed Apr 4, 2024
1 parent 37f6b76 commit c33a1b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ def harness():
harness.cleanup()


# This causes every test defined in this file will run 2 times, with
# the patch of charm.JujuVersion.has_secrets set as True and as False
# This causes every test defined in this file to run 2 times, each with
# charm.JujuVersion.has_secrets set as True or as False
@pytest.fixture(params=[True, False], autouse=True)
def _has_secrets(request, monkeypatch):
monkeypatch.setattr("charm.JujuVersion.has_secrets", PropertyMock(return_value=request.param))
Expand Down

0 comments on commit c33a1b3

Please sign in to comment.