Fix unit test UnloadFilament

pull/150/head
D.R.racer 2022-02-09 13:03:51 +01:00
parent fecb62ba6d
commit 2b045db75b
1 changed files with 2 additions and 2 deletions

View File

@ -306,9 +306,9 @@ void FailedUnloadResolveManual(uint8_t slot, logic::UnloadFilament &uf) {
REQUIRE(WhileTopState(uf, ProgressCode::RetractingFromFinda, idlerEngageDisengageMaxSteps));
REQUIRE(WhileTopState(uf, ProgressCode::DisengagingIdler, idlerEngageDisengageMaxSteps));
REQUIRE(VerifyState(uf, mg::FilamentLoadState::AtPulley, config::toolCount, config::toolCount, false, true, ml::off, ml::off, ErrorCode::RUNNING, ProgressCode::DisengagingIdler));
SimulateSelectorHoming(uf);
REQUIRE(WhileTopState(uf, ProgressCode::DisengagingIdler, idlerEngageDisengageMaxSteps));
REQUIRE(VerifyState(uf, mg::FilamentLoadState::AtPulley, mi::Idler::IdleSlotIndex(), slot, false, false, ml::off, ml::off, ErrorCode::OK, ProgressCode::OK));
}