From fbacd49817541e2261f8bc72577922948374859c Mon Sep 17 00:00:00 2001 From: Alex Engelberg Date: Tue, 19 Apr 2016 00:48:49 -0700 Subject: [PATCH] Fix (is (= x) y) caught by humane-test-output --- test/com/rpl/specter/core_test.cljx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/com/rpl/specter/core_test.cljx b/test/com/rpl/specter/core_test.cljx index 15f20e2..29d974f 100644 --- a/test/com/rpl/specter/core_test.cljx +++ b/test/com/rpl/specter/core_test.cljx @@ -671,8 +671,8 @@ (is (= {:a {:aaa 4 :b {:c {:aaa 3} :aaa 2}}} (s/transform (map-key-walker :aaa) inc {:a {:aaa 3 :b {:c {:aaa 2} :aaa 1}}}))) - (is (= {:a {:c {:b "X"}}}) - (s/setval (map-key-walker :b) "X" {:a {:c {:b {:d 1}}}})) + (is (= {:a {:c {:b "X"}}} + (s/setval (map-key-walker :b) "X" {:a {:c {:b {:d 1}}}}))) ) (deftest recursive-params-composable-path-test