Skip to content

Commit d44414f

Browse files
committed
Fix mistake
1 parent f845744 commit d44414f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

homu/parse_issue_comment.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def parse_issue_comment(username, body, sha, botname, hooks=[]):
206206

207207
if await_ci:
208208
commands.append(
209-
IssueCommentCommand.approve_await(approver, approved_sha))
209+
IssueCommentCommand.approve_await(approver, approved_sha)) # noqa
210210
else:
211211
commands.append(
212212
IssueCommentCommand.approve(approver, approved_sha))

homu/tests/test_parse_issue_comment.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def test_r_equals_await():
128128
assert command.actor == 'jill'
129129

130130

131-
def test_r_equals_at_user():
131+
def test_r_equals_at_user_await():
132132
"""
133133
@bors r=@jill await
134134
"""

0 commit comments

Comments
 (0)