Skip to content

Commit

Permalink
fix test part
Browse files Browse the repository at this point in the history
  • Loading branch information
molarmanful committed Nov 17, 2023
1 parent f68f781 commit 8692f1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sclin/test/src/Util.scala
Original file line number Diff line number Diff line change
@@ -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*))
Expand Down

0 comments on commit 8692f1d

Please sign in to comment.