mirror of
https://github.com/azaion/autopilot.git
synced 2026-06-21 17:51:09 +00:00
chore: cargo fmt --all (gimbal_controller hygiene)
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -78,9 +78,22 @@ async fn az656_set_pose_publishes_monotonic_timestamp() {
|
||||
}
|
||||
|
||||
// Assert
|
||||
assert!(timestamps[0] > 0, "initial stamp should be > 0 after first set_pose");
|
||||
assert!(timestamps[1] > timestamps[0], "ts not monotonic: {} → {}", timestamps[0], timestamps[1]);
|
||||
assert!(timestamps[2] > timestamps[1], "ts not monotonic: {} → {}", timestamps[1], timestamps[2]);
|
||||
assert!(
|
||||
timestamps[0] > 0,
|
||||
"initial stamp should be > 0 after first set_pose"
|
||||
);
|
||||
assert!(
|
||||
timestamps[1] > timestamps[0],
|
||||
"ts not monotonic: {} → {}",
|
||||
timestamps[0],
|
||||
timestamps[1]
|
||||
);
|
||||
assert!(
|
||||
timestamps[2] > timestamps[1],
|
||||
"ts not monotonic: {} → {}",
|
||||
timestamps[1],
|
||||
timestamps[2]
|
||||
);
|
||||
}
|
||||
|
||||
/// AZ-655 integration — load a plan and exercise the executor against
|
||||
|
||||
Reference in New Issue
Block a user