Skip to content

Commit 07d987a

Browse files
ignitzdongjoon-hyun
authored andcommitted
[MINOR][CORE][TESTS] Fix typo in MasterDecommissionSuite class name
### What changes were proposed in this pull request? Fix a typo: `s/MasterDecommisionSuite/MasterDecommissionSuite` and `s/decommision/decommission` ### Why are the changes needed? Typo in class name and test name. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Existing tests and recompiled. ### Was this patch authored or co-authored using generative AI tooling? No Closes #52249 from ignitz/patch-1. Authored-by: Yuri Niitsuma <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent faa1aaa commit 07d987a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/test/scala/org/apache/spark/deploy/master/MasterDecommisionSuite.scala renamed to core/src/test/scala/org/apache/spark/deploy/master/MasterDecommissionSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import org.apache.spark.internal.config.DECOMMISSION_ENABLED
2727
import org.apache.spark.internal.config.UI._
2828
import org.apache.spark.util.Utils
2929

30-
class MasterDecommisionSuite extends MasterSuiteBase {
31-
test("SPARK-46888: master should reject worker kill request if decommision is disabled") {
30+
class MasterDecommissionSuite extends MasterSuiteBase {
31+
test("SPARK-46888: master should reject worker kill request if decommission is disabled") {
3232
implicit val formats = org.json4s.DefaultFormats
3333
val conf = new SparkConf()
3434
.set(DECOMMISSION_ENABLED, false)

0 commit comments

Comments
 (0)