From edf9d8c54472dbe94caa5e7fa48bec471e35632c Mon Sep 17 00:00:00 2001 From: nathanmarz Date: Sat, 3 Jun 2017 06:11:23 -0400 Subject: [PATCH] rename test --- test/com/rpl/specter/core_test.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/com/rpl/specter/core_test.cljc b/test/com/rpl/specter/core_test.cljc index 27991e4..cea2603 100644 --- a/test/com/rpl/specter/core_test.cljc +++ b/test/com/rpl/specter/core_test.cljc @@ -1544,7 +1544,7 @@ ;; this function necessary to trigger the bug from happening (defn inc2 [v] (inc v)) -(deftest dynamic-function-arg +(deftest dynamic-function-arg-test (is (= {[2] 4} (let [a 1] (transform (s/keypath [(inc2 a)]) inc {[2] 3})))) )