huskies: merge 1010
This commit is contained in:
@@ -315,7 +315,10 @@ mod tests {
|
||||
let config = empty_config();
|
||||
let report = run_cleanup_with_lookup(&project_root, &config, true, |id| {
|
||||
if id == story_id {
|
||||
Some(Stage::Coding { claim: None })
|
||||
Some(Stage::Coding {
|
||||
claim: None,
|
||||
plan: Default::default(),
|
||||
})
|
||||
} else {
|
||||
None
|
||||
}
|
||||
|
||||
@@ -184,7 +184,8 @@ mod tests {
|
||||
#[test]
|
||||
fn should_not_sweep_coding() {
|
||||
assert!(!worktree_should_be_swept(Some(&Stage::Coding {
|
||||
claim: None
|
||||
claim: None,
|
||||
plan: Default::default(),
|
||||
})));
|
||||
}
|
||||
|
||||
@@ -308,7 +309,10 @@ mod tests {
|
||||
|
||||
let removed = sweep_with_lookup(&project_root, &config, |id| {
|
||||
if id == story_id {
|
||||
Some(Stage::Coding { claim: None })
|
||||
Some(Stage::Coding {
|
||||
claim: None,
|
||||
plan: Default::default(),
|
||||
})
|
||||
} else {
|
||||
None
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user