From 7feb5aabe6e71ad6e65c72ca3cc977541c0991c4 Mon Sep 17 00:00:00 2001 From: Andrey Listopadov Date: Tue, 16 Feb 2021 10:03:44 +0300 Subject: fix(tests): fix test macros to correctly report errors runtime errors captured via pcall --- tests/core.fnl | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/core.fnl') diff --git a/tests/core.fnl b/tests/core.fnl index 0220c06..fe14670 100644 --- a/tests/core.fnl +++ b/tests/core.fnl @@ -790,6 +790,7 @@ (testing "sets into tables" (assert-eq (into [] (core.ordered-set 1 2 3)) [1 2 3]) + (assert-eq (into [] (core.ordered-set :a :b :c)) [:a :b :c]) (assert-eq (into {} (core.ordered-set [:a 1] [:b 2])) {:a 1 :b 2}))) (deftest memoization -- cgit v1.2.3