Skip to content

Commit

Permalink
review fixes 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Łukasz Bigorajski committed Oct 28, 2024
1 parent 2b5f1d9 commit a78d58b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1721,7 +1721,7 @@ class SpelExpressionSpec extends AnyFunSuite with Matchers with ValidatedValuesD
test("should convert a set to a list") {
val parsed = parse[Any]("#setVal.toList()", ctx).validValue
parsed.returnType shouldBe Typed.genericTypeClass[JList[_]](List(Typed.typedClass[String]))
parsed.evaluateSync[Any](ctx) shouldBe JList.of("a")
parsed.evaluateSync[Any](ctx) shouldBe List("a").asJava
}

}
Expand Down

0 comments on commit a78d58b

Please sign in to comment.