aboutsummaryrefslogtreecommitdiff
path: root/tests/ai-test.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ai-test.scm')
-rw-r--r--tests/ai-test.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/ai-test.scm b/tests/ai-test.scm
index 9bb3d28..02a9806 100644
--- a/tests/ai-test.scm
+++ b/tests/ai-test.scm
@@ -1,5 +1,5 @@
;; Mock entity module for testing
-(module downstroke/entity *
+(module downstroke-entity *
(import scheme (chicken base) (chicken keyword))
(define (entity-ref entity key #!optional default)
(get-keyword key entity (if (procedure? default) default (lambda () default))))
@@ -12,18 +12,18 @@
(define (entity-type e) (entity-ref e #:type #f)))
;; Mock world module for testing
-(module downstroke/world *
+(module downstroke-world *
(import scheme (chicken base))
(define (scene-entities s) s)
(define (scene-find-tagged scene tag) #f))
(import (srfi 64)
states
- downstroke/entity
- downstroke/world)
+ downstroke-entity
+ downstroke-world)
(include "ai.scm")
-(import downstroke/ai)
+(import downstroke-ai)
(test-begin "ai")