Skip to content

Commit

Permalink
Remove Array from utest.framework.TestPath (#309)
Browse files Browse the repository at this point in the history
Should fix #237
  • Loading branch information
lihaoyi committed Nov 5, 2023
1 parent ddc47eb commit d760733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utest/src-2/utest/Tests.scala
Expand Up @@ -71,7 +71,7 @@ object TestsVersionSpecific {
override def transform(t: c.Tree) = {
t match{
case q"framework.this.TestPath.synthetic" =>
c.typeCheck(q"_root_.utest.framework.TestPath(_root_.scala.Array(..$path))")
c.typeCheck(q"_root_.utest.framework.TestPath(_root_.scala.IndexedSeq(..$path))")
case _ => super.transform(t)
}
}
Expand Down

0 comments on commit d760733

Please sign in to comment.