aboutsummaryrefslogtreecommitdiff
path: root/graphx/src/test/scala
diff options
context:
space:
mode:
authorSandeep <sandeep@techaddict.me>2014-04-24 15:07:23 -0700
committerReynold Xin <rxin@apache.org>2014-04-24 15:07:23 -0700
commita03ac222d84025a1036750e1179136a13f75dea7 (patch)
treecc7f041b35b7804b7d62520f279cc6e53e40d73c /graphx/src/test/scala
parentc5c1916dd1b77e22759d58b5b361c56672983e3e (diff)
downloadspark-a03ac222d84025a1036750e1179136a13f75dea7.tar.gz
spark-a03ac222d84025a1036750e1179136a13f75dea7.tar.bz2
spark-a03ac222d84025a1036750e1179136a13f75dea7.zip
Fix Scala Style
Any comments are welcome Author: Sandeep <sandeep@techaddict.me> Closes #531 from techaddict/stylefix-1 and squashes the following commits: 7492730 [Sandeep] Pass 4 98b2428 [Sandeep] fix rxin suggestions b5e2e6f [Sandeep] Pass 3 05932d7 [Sandeep] fix if else styling 2 08690e5 [Sandeep] fix if else styling
Diffstat (limited to 'graphx/src/test/scala')
-rw-r--r--graphx/src/test/scala/org/apache/spark/graphx/GraphOpsSuite.scala7
1 files changed, 5 insertions, 2 deletions
diff --git a/graphx/src/test/scala/org/apache/spark/graphx/GraphOpsSuite.scala b/graphx/src/test/scala/org/apache/spark/graphx/GraphOpsSuite.scala
index a467ca1ae7..ea94d4accb 100644
--- a/graphx/src/test/scala/org/apache/spark/graphx/GraphOpsSuite.scala
+++ b/graphx/src/test/scala/org/apache/spark/graphx/GraphOpsSuite.scala
@@ -165,8 +165,11 @@ class GraphOpsSuite extends FunSuite with LocalSparkContext {
// not have any edges in the specified direction.
assert(edges.count === 50)
edges.collect.foreach {
- case (vid, edges) => if (vid > 0 && vid < 49) assert(edges.size == 2)
- else assert(edges.size == 1)
+ case (vid, edges) => if (vid > 0 && vid < 49) {
+ assert(edges.size == 2)
+ } else {
+ assert(edges.size == 1)
+ }
}
edges.collect.foreach {
case (vid, edges) =>