huskies: merge 940

This commit is contained in:
dave
2026-05-12 23:05:50 +00:00
parent b8ec3e2025
commit 0f0cf59329
2 changed files with 172 additions and 45 deletions
+3 -3
View File
@@ -195,7 +195,7 @@ async fn gateway_notification_poller_continues_when_one_project_unreachable() {
);
let has_good = messages
.iter()
.any(|m| m.contains("[good-project]") && m.contains("10_story_ok"));
.any(|m| m.contains("[good-project]") && m.contains("#10"));
assert!(
has_good,
"Expected a notification from [good-project]; got: {messages:?}"
@@ -792,8 +792,8 @@ async fn broadcaster_forwarder_forwards_events_with_project_tag() {
"Expected [my-project] prefix; got: {plain}"
);
assert!(
plain.contains("7_story_x"),
"Expected story ID; got: {plain}"
plain.contains("#7"),
"Expected story number #7; got: {plain}"
);
}