From 28dba7abf2d31c5731b72df41e956ea57a8885e9 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Wed, 3 Feb 2021 00:11:40 +0300 Subject: [PATCH] Fixed imports in tests. --- t/core.lisp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/t/core.lisp b/t/core.lisp index e7e6404..346c0bf 100644 --- a/t/core.lisp +++ b/t/core.lisp @@ -1,8 +1,12 @@ (defpackage #:cl-info-test/core - (:use #:cl - #:cl-info/core - #:rove - #:hamcrest/rove)) + (:use #:cl) + (:import-from #:cl-info) + (:import-from #:hamcrest/rove + #:contains + #:assert-that) + (:import-from #:rove + #:testing + #:deftest)) (in-package cl-info-test/core)