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
This commit is contained in:
Imre Kószó 2022-07-30 17:08:02 +02:00
parent 62375212a8
commit 891a7f98ba

View file

@ -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]))