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
respond to code review comments
  • Loading branch information
dtenedor committed Apr 3, 2024
commit b3da695e016612d32b21f11a6993d2424dc49f48
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@

package org.apache.spark.util

import org.apache.spark.SparkFunSuite
import org.scalatest.funsuite.AnyFunSuite // scalastyle:ignore funsuite

import org.apache.spark.internal.{Logging, LogKey}

class LogKeySuite extends SparkFunSuite with Logging {
class LogKeySuite
extends AnyFunSuite // scalastyle:ignore funsuite
with Logging {

test("LogKey enumeration fields must be sorted alphabetically") {
val keys = LogKey.values.toSeq
assert(keys === keys.sorted, "LogKey enumeration fields must be sorted alphabetically")
Expand Down