From a9ad44839a661b3329438672dc7c14d556360554 Mon Sep 17 00:00:00 2001 From: Chris Nuernberger Date: Sat, 7 Oct 2023 07:39:20 -0600 Subject: [PATCH] Easiest upgrade ever --- test/tech/v3/dataset/reductions_test.clj | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/tech/v3/dataset/reductions_test.clj b/test/tech/v3/dataset/reductions_test.clj index 7e3890ca..d48295ac 100644 --- a/test/tech/v3/dataset/reductions_test.clj +++ b/test/tech/v3/dataset/reductions_test.clj @@ -17,9 +17,8 @@ [clojure.core.protocols :as cl-proto]) (:import [tech.v3.datatype UnaryPredicate FastStruct$FMapEntry] [java.time LocalDate YearMonth] - [ham_fisted Consumers$IncConsumer MutHashTable Reductions] - [java.util ArrayList Map$Entry Arrays] - [clojure.lang MapEntry])) + [ham_fisted Consumers$IncConsumer Reductions IAMapEntry] + [java.util ArrayList Map$Entry Arrays])) (deftest simple-reduction @@ -221,8 +220,8 @@ (hamf/custom-ireduce rrfn aacc (-> aacc - (rrfn (MapEntry/create :year-month (.getKey kv))) - (rrfn (MapEntry/create :count (deref (.getValue kv)))))))))))) + (rrfn (hamf/make-map-entry :year-month (.getKey kv))) + (rrfn (hamf/make-map-entry :count (deref (.getValue kv)))))))))))) (defn- otfrom-pathway