Skip to content

Commit

Permalink
fix checker
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bli committed May 10, 2024
1 parent 309e78f commit a5e6b2e
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,11 @@ class JavaScalaAPISuite extends FunSuite {
class1Only = Set(),
class2Only = Set("fromArray", "fromSeq", "length" // Java API has "size"
) ++ scalaCaseClassFunctions,
class1To2NameMap =
Map("toList" -> "toSeq", "create" -> "apply", "getListOfVariant" -> "getSeqOfVariant")))
class1To2NameMap = Map(
"toList" -> "toSeq",
"create" -> "apply",
"getListOfVariant" -> "getSeqOfVariant",
"getList" -> "getSeq")))
}

// Java SaveMode is an Enum,
Expand Down

0 comments on commit a5e6b2e

Please sign in to comment.