Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed genjavadoc error.
  • Loading branch information
sarutak committed Apr 10, 2020
commit 14bb7ba56d9ae6fcbed0f4b6e90407b388d14f61
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ class DatasetSuite extends QueryTest

private implicit val ordering = Ordering.by((c: ClassData) => c.a -> c.b)

// To avoid syntax error thrown by genjavadoc, make this case class non-top level and private.
private case class InvalidInJava2(`0`: Int)

test("checkAnswer should compare map correctly") {
val data = Seq((1, "2", Map(1 -> 2, 2 -> 1)))
checkAnswer(
Expand Down Expand Up @@ -1971,7 +1974,6 @@ case class NestedStruct(f: ClassData)
case class DeepNestedStruct(f: NestedStruct)

case class InvalidInJava(`abstract`: Int)
case class InvalidInJava2(`0`: Int)

/**
* A class used to test serialization using encoders. This class throws exceptions when using
Expand Down