aboutsummaryrefslogtreecommitdiff
path: root/src/test/ScriptTest.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-10 19:50:26 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-10 19:50:26 +0100
commit770496ee9d0e45480c0e0f8951adb8eee247bfe1 (patch)
tree98c68b0d37d8a1c0c8b8013ea7884d56f04aaa28 /src/test/ScriptTest.cpp
parent0cb7f2f82ca167656b3c5cb9f0cc3b44c59cb0eb (diff)
big WIP
Diffstat (limited to 'src/test/ScriptTest.cpp')
-rw-r--r--src/test/ScriptTest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/ScriptTest.cpp b/src/test/ScriptTest.cpp
index acdae70..ccf5060 100644
--- a/src/test/ScriptTest.cpp
+++ b/src/test/ScriptTest.cpp
@@ -39,7 +39,7 @@ TEST_F(ScriptTest, UpdateOnce) {
EXPECT_CALL(script, init()).Times(1);
EXPECT_CALL(script, update()).Times(1);
- system.update();
+ system.fixed_update();
}
{
@@ -47,7 +47,7 @@ TEST_F(ScriptTest, UpdateOnce) {
EXPECT_CALL(script, init()).Times(0);
EXPECT_CALL(script, update()).Times(1);
- system.update();
+ system.fixed_update();
}
}
@@ -61,7 +61,7 @@ TEST_F(ScriptTest, UpdateInactive) {
EXPECT_CALL(script, init()).Times(0);
EXPECT_CALL(script, update()).Times(0);
behaviorscript.active = false;
- system.update();
+ system.fixed_update();
}
{
@@ -70,6 +70,6 @@ TEST_F(ScriptTest, UpdateInactive) {
EXPECT_CALL(script, init()).Times(1);
EXPECT_CALL(script, update()).Times(1);
behaviorscript.active = true;
- system.update();
+ system.fixed_update();
}
}