Skip to content

Commit 4172676

Browse files
committed
update test names
1 parent 5496952 commit 4172676

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/test/scala/org/apache/spark/util/JsonProtocolSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ class JsonProtocolSuite extends SparkFunSuite {
484484
testAccumValue(Some("anything"), 123, JString("123"))
485485
}
486486

487-
test("forwards compatibility: ignore unknown fields") {
487+
test("SPARK-30936: forwards compatibility - ignore unknown fields") {
488488
val expected = TestListenerEvent("foo", 123)
489489
val unknownFieldsJson =
490490
"""{
@@ -496,7 +496,7 @@ class JsonProtocolSuite extends SparkFunSuite {
496496
assert(JsonProtocol.sparkEventFromJson(parse(unknownFieldsJson)) === expected)
497497
}
498498

499-
test("backwards compatibility: set default values for missing fields") {
499+
test("SPARK-30936: backwards compatibility - set default values for missing fields") {
500500
val expected = TestListenerEvent("foo", 0)
501501
val unknownFieldsJson =
502502
"""{

0 commit comments

Comments
 (0)