Skip to content

Commit

Permalink
[SPARK-20790][MLLIB] Remove extraneous logging in test
Browse files Browse the repository at this point in the history
## What changes were proposed in this pull request?

Remove extraneous logging.

## How was this patch tested?

Unit tests pass.

Author: David Eis <deis@bloomberg.net>

Closes #18188 from davideis/fix-test.
  • Loading branch information
David Eis authored and srowen committed Jun 3, 2017
1 parent 6cbc61d commit 96e6ba6
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,6 @@ class ALSSuite
val itemFactorsNeg = modelWithNeg.itemFactors
val userFactorsZero = modelWithZero.userFactors
val itemFactorsZero = modelWithZero.itemFactors
userFactorsNeg.collect().foreach(arr => logInfo(s"implicit test " + arr.mkString(" ")))
userFactorsZero.collect().foreach(arr => logInfo(s"implicit test " + arr.mkString(" ")))
assert(userFactorsNeg.intersect(userFactorsZero).count() == 0)
assert(itemFactorsNeg.intersect(itemFactorsZero).count() == 0)
}
Expand Down

0 comments on commit 96e6ba6

Please sign in to comment.