From 0330d8b43a9d10cc9b3246f16d7b6af5963532fe Mon Sep 17 00:00:00 2001 From: chenj7 Date: Mon, 6 Sep 2021 23:31:59 -0400 Subject: [PATCH] elementary_134: Updated test cases Updated test cases to match more closely what I see as original test cases in https://4clojure.oxal.org/#/problem/134 This also allows for passing tests with definition of __ --- src/rich4clojure/elementary/problem_134.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/rich4clojure/elementary/problem_134.clj b/src/rich4clojure/elementary/problem_134.clj index 5387ce7..1fa4556 100644 --- a/src/rich4clojure/elementary/problem_134.clj +++ b/src/rich4clojure/elementary/problem_134.clj @@ -17,9 +17,9 @@ ) (tests - (__ :a {:a nil :b 2}) := - (__ :b {:a nil :b 2}) := - (__ :c {:a nil :b 2}) :=) + true := (__ :a {:a nil :b 2}) + false := (__ :b {:a nil :b 2}) + false := (__ :c {:a nil :b 2})) ;; Share your solution, and/or check how others did it: -;; https://gist.github.com/70ba70e1e4e0f249a90bc99bda5f8aff \ No newline at end of file +;; https://gist.github.com/70ba70e1e4e0f249a90bc99bda5f8aff