Skip to content

Commit

Permalink
Cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
pcubillos committed Jan 1, 2024
1 parent 76ed4f7 commit a166e3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_config_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ def test_set_ads_display(mock_init):


def test_set_ads_display_raises(mock_init):
with pytest.raises(ValueError,
match="The ads_display value must be a positive integer."):
error = "The ads_display value must be a positive integer"
with pytest.raises(ValueError, match=error):
cm.set("ads_display", "fifty")


Expand Down

0 comments on commit a166e3e

Please sign in to comment.