Skip to content

Commit

Permalink
refactor: lowercase pernosco-submit
Browse files Browse the repository at this point in the history
  • Loading branch information
pyoor committed Oct 20, 2022
1 parent 44e16ef commit 2a17807
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bugmon/bugmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def __init__(
self.pernosco_creds = pernosco_creds
if pernosco_creds is not None and not is_pernosco_available():
if not dry_run:
raise BugmonException("Pernosco-submit is not properly configured!")
raise BugmonException("pernosco-submit is not properly configured!")

self.queue: List[str] = []
self.results: Dict[str, Dict[str, ReproductionBase]] = {}
Expand Down
2 changes: 1 addition & 1 deletion tests/test_bugmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_bugmon_need_info_on_bisect_fix(mocker, bugmon, build):

def test_bugmon_throws_without_pernosco_submit(bug, bugsy, pernosco_creds, working_dir):
"""Test that bugmon throws when pernosco-submit is not available"""
expected = "Pernosco-submit is not properly configured!"
expected = "pernosco-submit is not properly configured!"
with pytest.raises(BugmonException, match=expected):
BugMonitor(bugsy, bug, working_dir, pernosco_creds, False)

Expand Down

0 comments on commit 2a17807

Please sign in to comment.