1 Commits

Author SHA1 Message Date
31844e4fe2 fix tests 2025-01-31 11:17:39 +01:00
2 changed files with 7 additions and 2 deletions

View File

@ -347,7 +347,9 @@ pub mod tests {
torquing: true,
},
);
sim_testbench.step_until(Duration::from_millis(100)).unwrap();
sim_testbench
.step_until(Duration::from_millis(100))
.unwrap();
check_mgt_hk(
&mut sim_testbench,
MgtHkSet {

View File

@ -1,7 +1,10 @@
use delegate::delegate;
use std::sync::mpsc;
use nexosim::{simulation::ExecutionError, time::{Deadline, MonotonicTime}};
use nexosim::{
simulation::ExecutionError,
time::{Deadline, MonotonicTime},
};
use satrs_minisim::{SimReply, SimRequest};
use crate::{controller::SimController, create_sim_controller, ThreadingModel};