From 259bb6fce47016de008ce144daf3702d010299ba Mon Sep 17 00:00:00 2001 From: Isse Date: Wed, 8 Mar 2023 23:31:16 +0100 Subject: [PATCH] fix phys test --- common/systems/tests/character_state.rs | 1 + common/systems/tests/phys/basic.rs | 1 + common/systems/tests/phys/utils.rs | 1 + 3 files changed, 3 insertions(+) diff --git a/common/systems/tests/character_state.rs b/common/systems/tests/character_state.rs index 425a2ab157..8f1dcbf58f 100644 --- a/common/systems/tests/character_state.rs +++ b/common/systems/tests/character_state.rs @@ -84,6 +84,7 @@ mod tests { None, // Dummy ServerConstants &ServerConstants::default(), + |_, _, _, _| {}, ); } diff --git a/common/systems/tests/phys/basic.rs b/common/systems/tests/phys/basic.rs index e7eabcbfd0..dbeab553ea 100644 --- a/common/systems/tests/phys/basic.rs +++ b/common/systems/tests/phys/basic.rs @@ -19,6 +19,7 @@ fn simple_run() { false, None, &ServerConstants::default(), + |_, _, _, _| {}, ); } diff --git a/common/systems/tests/phys/utils.rs b/common/systems/tests/phys/utils.rs index 3d6ac32cd8..0fd4f08515 100644 --- a/common/systems/tests/phys/utils.rs +++ b/common/systems/tests/phys/utils.rs @@ -66,6 +66,7 @@ pub fn tick(state: &mut State, dt: Duration) { false, None, &ServerConstants::default(), + |_, _, _, _| {}, ); }