From ce6f6d52b729227293c86e0d95352c3315793099 Mon Sep 17 00:00:00 2001 From: James Roome Date: Sat, 31 Aug 2024 12:06:23 +0530 Subject: [PATCH] We're using seconds now --- src/commonTest/kotlin/com/github/quillraven/fleks/WorldTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commonTest/kotlin/com/github/quillraven/fleks/WorldTest.kt b/src/commonTest/kotlin/com/github/quillraven/fleks/WorldTest.kt index c42c2f2..be7175b 100644 --- a/src/commonTest/kotlin/com/github/quillraven/fleks/WorldTest.kt +++ b/src/commonTest/kotlin/com/github/quillraven/fleks/WorldTest.kt @@ -332,7 +332,7 @@ internal class WorldTest { } w.system().enabled = false - w.update(1.milliseconds) + w.update(1.seconds) assertEquals(1f, w.deltaTime) assertEquals(1, w.system().numCalls)