aboutsummaryrefslogtreecommitdiff
path: root/tests/physics-test.scm
diff options
context:
space:
mode:
authorGene Pasquet <dev@etenil.net>2026-04-05 15:34:21 +0100
committerGene Pasquet <dev@etenil.net>2026-04-05 15:34:21 +0100
commit2a75c88de470a173067feee4df80cd8e3fb7a641 (patch)
tree65f6d158f635c82bf11c3b25a99f1404f3808fb4 /tests/physics-test.scm
parent526e6cdcdf1025d5e29680bc99ab910c79789764 (diff)
Cleanup and egg!
Diffstat (limited to 'tests/physics-test.scm')
-rw-r--r--tests/physics-test.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/physics-test.scm b/tests/physics-test.scm
index 4c6d4a6..0a2c92b 100644
--- a/tests/physics-test.scm
+++ b/tests/physics-test.scm
@@ -7,7 +7,7 @@
(only srfi-1 every member make-list fold iota))
;; Create a mock tilemap module to avoid SDL dependency
-(module tilemap *
+(module downstroke/tilemap *
(import scheme (chicken base) defstruct)
(defstruct tileset
@@ -35,23 +35,23 @@
layers
objects))
-(import tilemap)
+(import downstroke/tilemap)
;; Load entity module first (since world now imports entity)
(include "entity.scm")
-(import entity)
+(import downstroke/entity)
;; Load world module first
(include "world.scm")
-(import world)
+(import downstroke/world)
;; Load physics module
(include "physics.scm")
-(import physics)
+(import downstroke/physics)
;; Load physics module
(include "input.scm")
-(import input)
+(import downstroke/input)
;; Test suite for physics module
(test-begin "physics-module")