From c2085be2dd2a0cb3da05991847e35080915e547e Mon Sep 17 00:00:00 2001 From: Gene Pasquet Date: Sat, 18 Apr 2026 05:49:34 +0100 Subject: rename modules --- tests/physics-test.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/physics-test.scm') diff --git a/tests/physics-test.scm b/tests/physics-test.scm index 76b480c..e22c2fd 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 downstroke-tilemap * +(module (downstroke tilemap) * (import scheme (chicken base) defstruct) (defstruct tileset @@ -35,11 +35,11 @@ layers objects)) -(import downstroke-tilemap) +(import (downstroke tilemap)) ;; Load entity module first (since world now imports entity) (include "entity.scm") -(import downstroke-entity) +(import (downstroke entity)) (import (only (list-utils alist) plist->alist)) @@ -48,15 +48,15 @@ ;; Load world module first (include "world.scm") -(import downstroke-world) +(import (downstroke world)) ;; Load physics module (include "physics.scm") -(import downstroke-physics) +(import (downstroke physics)) ;; Load physics module (include "input.scm") -(import downstroke-input) +(import (downstroke input)) ;; Test suite for physics module (test-begin "physics-module") -- cgit v1.2.3