summaryrefslogtreecommitdiff
path: root/test/res/test.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'test/res/test.lisp')
-rw-r--r--test/res/test.lisp7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/res/test.lisp b/test/res/test.lisp
index f3b870c..eea180c 100644
--- a/test/res/test.lisp
+++ b/test/res/test.lisp
@@ -24,9 +24,10 @@
(debuglog "============")
(debuglog "Running tests")
-(import :ntest)
-(ntest.test "Funny test" (seq
+(import :test)
+(test.test "Funny test" (seq
(debuglog "Funny test running")
- (debuglog ((ntest.fail "Test failed")))))
+ ((test.assert false "False failed"))
+ ((test.fail "Test failed"))))