Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/backend/src/couchers/servicers/bugs.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def ReportBug(
f"**Page**: {request.page}\n"
f"**User**: {user_details} / `{(context._sofa or '')[:12]}`"
)
issue_labels = ["bug tool", "bug: triage needed"]
issue_labels = ["bug: triage needed"]

json_body = {"title": issue_title, "body": issue_body, "labels": issue_labels}

Expand Down
4 changes: 2 additions & 2 deletions app/backend/src/tests/test_bugs.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def dud_post(url, auth, json):
assert json == {
"title": "subject",
"body": expected_body,
"labels": ["bug tool", "bug: triage needed"],
"labels": ["bug: triage needed"],
}

class _PostReturn:
Expand Down Expand Up @@ -130,7 +130,7 @@ def dud_post(url, auth, json):
assert json == {
"title": "subject",
"body": expected_body,
"labels": ["bug tool", "bug: triage needed"],
"labels": ["bug: triage needed"],
}

class _PostReturn:
Expand Down
Loading