From 5ca8f648533dcdcfe5610add9105f2511329447d Mon Sep 17 00:00:00 2001 From: VaclavT Date: Tue, 4 May 2021 19:55:04 +0200 Subject: [PATCH] typo fixed in unit tests --- stdlib/ut.lsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/ut.lsp b/stdlib/ut.lsp index 2701f01..2a862a7 100644 --- a/stdlib/ut.lsp +++ b/stdlib/ut.lsp @@ -11,7 +11,7 @@ (ut::assert-equal 1 test)) (defun ut::assert-false (test) - (ut::asertt-equal nil test)) + (ut::assert-equal nil test)) (defun ut::define-test (name exp_list)