diff --git a/test/com/rpl/specter/core_test.cljc b/test/com/rpl/specter/core_test.cljc index eb4fe1d..023a4b7 100644 --- a/test/com/rpl/specter/core_test.cljc +++ b/test/com/rpl/specter/core_test.cljc @@ -1515,10 +1515,11 @@ )) #?(:clj - (defprotocolpath FooPP) - (extend-protocolpath FooPP String s/STAY) + (do + (defprotocolpath FooPP) + (extend-protocolpath FooPP String s/STAY) - (deftest satisfies-protpath-test - (is (satisfies-protpath? FooPP "a")) - (is (not (satisfies-protpath? FooPP 1))) - )) + (deftest satisfies-protpath-test + (is (satisfies-protpath? FooPP "a")) + (is (not (satisfies-protpath? FooPP 1))) + )))