diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/array-list.scm (renamed from tests/data/array-list.scm) | 2 | ||||
-rw-r--r-- | tests/heap.scm (renamed from tests/data/heap.scm) | 2 | ||||
-rw-r--r-- | tests/quadtree.scm (renamed from tests/data/quadtree.scm) | 2 | ||||
-rw-r--r-- | tests/queue.scm (renamed from tests/data/queue.scm) | 2 | ||||
-rw-r--r-- | tests/vector.scm (renamed from tests/math/vector.scm) | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/tests/data/array-list.scm b/tests/array-list.scm index f93b6fa..3907b02 100644 --- a/tests/data/array-list.scm +++ b/tests/array-list.scm @@ -15,7 +15,7 @@ ;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. -(define-module (tests data array-list) +(define-module (tests array-list) #:use-module (tests utils) #:use-module (srfi srfi-64) #:use-module (chickadee data array-list)) diff --git a/tests/data/heap.scm b/tests/heap.scm index 351d20c..9c87384 100644 --- a/tests/data/heap.scm +++ b/tests/heap.scm @@ -15,7 +15,7 @@ ;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. -(define-module (tests data heap) +(define-module (tests heap) #:use-module (tests utils) #:use-module (srfi srfi-64) #:use-module (chickadee data heap)) diff --git a/tests/data/quadtree.scm b/tests/quadtree.scm index 1dd37cc..fa578cd 100644 --- a/tests/data/quadtree.scm +++ b/tests/quadtree.scm @@ -15,7 +15,7 @@ ;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. -(define-module (tests data quadtree) +(define-module (tests quadtree) #:use-module (tests utils) #:use-module (srfi srfi-64) #:use-module (chickadee data quadtree) diff --git a/tests/data/queue.scm b/tests/queue.scm index 0ccc808..03eaa01 100644 --- a/tests/data/queue.scm +++ b/tests/queue.scm @@ -15,7 +15,7 @@ ;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. -(define-module (tests data queue) +(define-module (tests queue) #:use-module (tests utils) #:use-module (srfi srfi-64) #:use-module (chickadee data queue)) diff --git a/tests/math/vector.scm b/tests/vector.scm index c3fc900..aba5fd1 100644 --- a/tests/math/vector.scm +++ b/tests/vector.scm @@ -15,7 +15,7 @@ ;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. -(define-module (tests math vector) +(define-module (tests vector) #:use-module (tests utils) #:use-module (srfi srfi-64) #:use-module (chickadee math) |