From f7cce1872c1efc445cfa034fddd54963116d77ee Mon Sep 17 00:00:00 2001 From: Daniel Leong Date: Thu, 31 Oct 2024 19:49:21 -0400 Subject: [PATCH] Fix a missing `(is)` assertion --- test/spade/core_test.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/spade/core_test.cljs b/test/spade/core_test.cljs index 6c80b0f..3b4b3c0 100644 --- a/test/spade/core_test.cljs +++ b/test/spade/core_test.cljs @@ -156,8 +156,8 @@ (deftest defclass-compose-test (testing "Composing should not break :key naming" (let [generated (composed-factory$ "" ["blue"])] - (= "blue" - (:spade.core/key generated)))) + (is (= "blue" + (:spade.core/key generated))))) (testing "computed-key test" (is (= "spade-core-test-computed-key_BLUE spade-core-test-composed_blue"