From 8692f1d9e22b5f769f2873557d686c088d1d7099 Mon Sep 17 00:00:00 2001 From: molarmanful Date: Fri, 17 Nov 2023 12:11:54 -0500 Subject: [PATCH] fix test part --- sclin/test/src/Util.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sclin/test/src/Util.scala b/sclin/test/src/Util.scala index 1eaf43d..42eebf4 100644 --- a/sclin/test/src/Util.scala +++ b/sclin/test/src/Util.scala @@ -1,12 +1,13 @@ package sclin +import scala.collection.immutable.HashMap import scala.collection.immutable.VectorMap import ANY.* trait TU extends munit.FunSuite: def dP(l: Int): PATH = PATH(None, l) - def dFN(l: Int, x: ANY*) = FN(dP(l), LazyList(x*)) + def dFN(l: Int, x: ANY*) = FN(dP(l), HashMap(), LazyList(x*)) def dARR(x: ANY*) = ARR(Vector(x*)) def dSEQ(x: ANY*) = SEQ(LazyList(x*)) def dMAP(x: (ANY, ANY)*) = MAP(VectorMap(x*))