Skip to content

Commit 96e6ba6

Browse files
David Eissrowen
authored andcommitted
[SPARK-20790][MLLIB] Remove extraneous logging in test
## What changes were proposed in this pull request? Remove extraneous logging. ## How was this patch tested? Unit tests pass. Author: David Eis <[email protected]> Closes #18188 from davideis/fix-test.
1 parent 6cbc61d commit 96e6ba6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

mllib/src/test/scala/org/apache/spark/ml/recommendation/ALSSuite.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -498,8 +498,6 @@ class ALSSuite
498498
val itemFactorsNeg = modelWithNeg.itemFactors
499499
val userFactorsZero = modelWithZero.userFactors
500500
val itemFactorsZero = modelWithZero.itemFactors
501-
userFactorsNeg.collect().foreach(arr => logInfo(s"implicit test " + arr.mkString(" ")))
502-
userFactorsZero.collect().foreach(arr => logInfo(s"implicit test " + arr.mkString(" ")))
503501
assert(userFactorsNeg.intersect(userFactorsZero).count() == 0)
504502
assert(itemFactorsNeg.intersect(itemFactorsZero).count() == 0)
505503
}

0 commit comments

Comments
 (0)