File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
mllib/src/test/scala/org/apache/spark/ml/param Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class ParamsSuite extends SparkFunSuite {
36
36
37
37
solver.setMaxIter(5 )
38
38
assert(solver.explainParam(maxIter) ===
39
- " maxIter: max number of iterations (>= 0) (default: 10, current: 5)" )
39
+ " maxIter: maximum number of iterations (>= 0) (default: 10, current: 5)" )
40
40
41
41
assert(inputCol.toString === s " ${uid}__inputCol " )
42
42
@@ -120,7 +120,7 @@ class ParamsSuite extends SparkFunSuite {
120
120
intercept[NoSuchElementException ](solver.getInputCol)
121
121
122
122
assert(solver.explainParam(maxIter) ===
123
- " maxIter: max number of iterations (>= 0) (default: 10, current: 100)" )
123
+ " maxIter: maximum number of iterations (>= 0) (default: 10, current: 100)" )
124
124
assert(solver.explainParams() ===
125
125
Seq (inputCol, maxIter).map(solver.explainParam).mkString(" \n " ))
126
126
You can’t perform that action at this time.
0 commit comments