Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
wilmveel committed Dec 5, 2024
1 parent 642d808 commit 8875fb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class GeneratorTest {
fun generatePrimitive() {
val ast = parser(src)
val random = Random(0L)
val res = ast.generate(Primitive(Type.String(), isIterable = false, isDictionary = false), random)
val res = ast.generate(Primitive(Type.String, isIterable = false, isDictionary = false), random)
val expect = "ZKN8V5p8ktkmmMX"
assertEquals(expect, res.jsonPrimitive.content)
}
Expand Down

0 comments on commit 8875fb8

Please sign in to comment.