From 300131ca5a19d9de5250579d944a52b067b2d60b Mon Sep 17 00:00:00 2001 From: Gene Pasquet Date: Sun, 5 Apr 2026 23:44:12 +0100 Subject: Rename prefix from downstroke/ to downstroke- --- tests/ai-test.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/ai-test.scm') 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") -- cgit v1.2.3