From 2a75c88de470a173067feee4df80cd8e3fb7a641 Mon Sep 17 00:00:00 2001 From: Gene Pasquet Date: Sun, 5 Apr 2026 15:34:21 +0100 Subject: Cleanup and egg! --- tests/world-test.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/world-test.scm') diff --git a/tests/world-test.scm b/tests/world-test.scm index c758d2a..38005b2 100644 --- a/tests/world-test.scm +++ b/tests/world-test.scm @@ -7,7 +7,7 @@ (only srfi-1 every member make-list)) ;; Create a mock tilemap module to avoid SDL dependency -(module tilemap * +(module downstroke/tilemap * (import scheme (chicken base) defstruct) (defstruct tileset @@ -35,16 +35,16 @@ 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 the module source directly (include "world.scm") ;; Now import it to access the exported functions -(import world) +(import downstroke/world) ;; Test suite for world module (test-begin "world-module") -- cgit v1.2.3