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
1 change: 0 additions & 1 deletion libs/hackbot-runtime/hackbot_runtime/actions/bugzilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ async def create_bug(
"summary": summary,
"version": version,
"description": description,
"is_markdown": True,
}
for k, v in (extra or {}).items():
body.setdefault(k, v)
Expand Down
3 changes: 2 additions & 1 deletion libs/hackbot-runtime/tests/test_bugzilla_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ async def test_create_bug_merges_extra_top_level_wins():
body = rec.actions[0]["params"]
assert body["severity"] == "S3"
assert body["product"] == "Core" # explicit arg wins over extra
assert body["is_markdown"] is True
# BMO's POST /bug rejects `is_markdown` with a 400, so it is never recorded.
assert "is_markdown" not in body


async def test_handlers_return_confirmation_string():
Expand Down