huskies: merge 964
This commit is contained in:
@@ -138,7 +138,7 @@ mod tests {
|
||||
fn stage_transition_event(story_id: &str) -> StatusEvent {
|
||||
StatusEvent::StageTransition {
|
||||
story_id: story_id.to_string(),
|
||||
story_name: None,
|
||||
story_name: String::new(),
|
||||
from_stage: "1_backlog".to_string(),
|
||||
to_stage: "2_current".to_string(),
|
||||
}
|
||||
@@ -249,7 +249,7 @@ mod tests {
|
||||
for i in 0..5u32 {
|
||||
bc.publish(StatusEvent::MergeFailure {
|
||||
story_id: format!("story_{i}"),
|
||||
story_name: None,
|
||||
story_name: String::new(),
|
||||
reason: "test".to_string(),
|
||||
});
|
||||
}
|
||||
@@ -299,7 +299,7 @@ mod tests {
|
||||
for i in 0..n {
|
||||
bc.publish(StatusEvent::MergeFailure {
|
||||
story_id: format!("other-{i}"),
|
||||
story_name: None,
|
||||
story_name: String::new(),
|
||||
reason: format!("reason-{i}"),
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user