From 6db23aa6c8423389020db3cb77835b3ca91f39a4 Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Sun, 14 Feb 2016 13:35:23 -0500 Subject: [PATCH] fix tests --- test/com/rpl/specter/core_test.cljx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/com/rpl/specter/core_test.cljx b/test/com/rpl/specter/core_test.cljx index 596bc93..442d7a4 100644 --- a/test/com/rpl/specter/core_test.cljx +++ b/test/com/rpl/specter/core_test.cljx @@ -574,11 +574,11 @@ (for-all+ [s1 (gen/vector (limit-size 5 gen/int))] (and - (empty? (s/select s/VOID s1)) - (empty? (s/select [s/VOID s/ALL s/ALL s/ALL s/ALL] s1)) - (= s1 (s/transform s/VOID inc s1)) - (= s1 (s/transform [s/ALL s/VOID s/ALL] inc s1)) - (= (s/transform [s/ALL (s/cond-path even? nil odd? s/VOID)] inc s1) + (empty? (s/select s/STOP s1)) + (empty? (s/select [s/STOP s/ALL s/ALL s/ALL s/ALL] s1)) + (= s1 (s/transform s/STOP inc s1)) + (= s1 (s/transform [s/ALL s/STOP s/ALL] inc s1)) + (= (s/transform [s/ALL (s/cond-path even? nil odd? s/STOP)] inc s1) (s/transform [s/ALL even?] inc s1)) )))