From d0e4ed6685e499c9883e2bd630d7d4dc68154390 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 22:46:37 -0300 Subject: [PATCH] fix tests --- test/rustint/core_test.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/rustint/core_test.clj b/test/rustint/core_test.clj index be84b63..ed24497 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -4,12 +4,12 @@ (deftest pasar-a-float-test01 (testing "Test 01 pasar-a-float" - (= (pasar-a-float 10) 10.0) + (is (= (pasar-a-float 10) 10.0)) ) ) (deftest pasar-a-float-test02 (testing "Test 02 pasar-a-float" - (= (pasar-a-float "10") 10.0) + (is (= (pasar-a-float "10") 10.0)) ) )