diff --git a/mllib/src/test/scala/org/apache/spark/mllib/tree/DecisionTreeSuite.scala b/mllib/src/test/scala/org/apache/spark/mllib/tree/DecisionTreeSuite.scala index ac0f31b538eda..fd8547c1660fc 100644 --- a/mllib/src/test/scala/org/apache/spark/mllib/tree/DecisionTreeSuite.scala +++ b/mllib/src/test/scala/org/apache/spark/mllib/tree/DecisionTreeSuite.scala @@ -706,7 +706,7 @@ class DecisionTreeSuite extends FunSuite with LocalSparkContext { assert(bestInfoStats == InformationGainStats.invalidInformationGainStats) } - test("don't chose split that doesn't satisfy min instance per node requirements") { + test("don't choose split that doesn't satisfy min instance per node requirements") { // if a split doesn't satisfy min instances per node requirements, // this split is invalid, even though the information gain of split is large. val arr = new Array[LabeledPoint](4)