From 891a7f98baf2fcf5e29912976b5ab10bf866530e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imre=20K=C3=B3sz=C3=B3?= Date: Sat, 30 Jul 2022 17:08:02 +0200 Subject: [PATCH] Fix xforms-test shadowing clojure.core vars Get rid of the following warnings: WARNING: reductions already refers to: #'clojure.core/reductions in namespace: net.cgrand.xforms-test, being replaced by: #'net.cgrand.xforms-test/reductions WARNING: partition already refers to: #'clojure.core/partition in namespace: net.cgrand.xforms-test, being replaced by: #'net.cgrand.xforms-test/partition --- test/net/cgrand/xforms_test.cljc | 1 + 1 file changed, 1 insertion(+) diff --git a/test/net/cgrand/xforms_test.cljc b/test/net/cgrand/xforms_test.cljc index d3b0466..e1bc748 100644 --- a/test/net/cgrand/xforms_test.cljc +++ b/test/net/cgrand/xforms_test.cljc @@ -1,4 +1,5 @@ (ns net.cgrand.xforms-test + (:refer-clojure :exclude [partition reductions]) (:require [clojure.test :refer [is deftest testing]] [net.cgrand.xforms :as x]))