Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sksamuel committed Apr 28, 2024
1 parent 25c7974 commit 6de95d4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class SpecificRecordDecoderTest : FunSpec({

val record = GenericData.Record(schema)
record.put("set1", listOf(1, 2))
record.put("set2", listOf(1, null, 2))
record.put("set2", listOf(1L, null, 2L))
record.put(
"set3",
listOf(
Expand Down Expand Up @@ -91,7 +91,7 @@ class SpecificRecordDecoderTest : FunSpec({

val record = GenericData.Record(schema)
record.put("list1", listOf(1, 2))
record.put("list2", listOf(1, null, 2))
record.put("list2", listOf(1L, null, 2L))
record.put(
"list3",
listOf(
Expand Down

0 comments on commit 6de95d4

Please sign in to comment.