2 Commits

Author SHA1 Message Date
49b56024c9 Merge branch 'main' into update-minisim 2025-01-31 11:02:56 +01:00
11d5266be1 fix tests 2025-01-31 09:45:13 +01:00
2 changed files with 2 additions and 7 deletions

View File

@@ -347,9 +347,7 @@ 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,10 +1,7 @@
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};