aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynold Xin <rxin@cs.berkeley.edu>2013-05-21 11:41:42 -0700
committerReynold Xin <rxin@cs.berkeley.edu>2013-05-21 11:41:42 -0700
commit66dac449fbee9ee033a05f9359179fb82a6ab8a1 (patch)
treeeec841a991e8ab6c9952ed8f1ff5a551179c8c8b
parent5912cc49676821c3f1599f81dcf714b040e04a1a (diff)
parent786c97b87c9d3074796e2d931635d9c6f72b9704 (diff)
downloadspark-66dac449fbee9ee033a05f9359179fb82a6ab8a1.tar.gz
spark-66dac449fbee9ee033a05f9359179fb82a6ab8a1.tar.bz2
spark-66dac449fbee9ee033a05f9359179fb82a6ab8a1.zip
Merge pull request #618 from woggling/dead-code-disttest
DistributedSuite: remove dead code
-rw-r--r--core/src/test/scala/spark/DistributedSuite.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/src/test/scala/spark/DistributedSuite.scala b/core/src/test/scala/spark/DistributedSuite.scala
index 068bb6ca4f..0866fb47b3 100644
--- a/core/src/test/scala/spark/DistributedSuite.scala
+++ b/core/src/test/scala/spark/DistributedSuite.scala
@@ -222,7 +222,6 @@ class DistributedSuite extends FunSuite with ShouldMatchers with BeforeAndAfter
sc = new SparkContext(clusterUrl, "test")
val data = sc.parallelize(Seq(true, true), 2)
assert(data.count === 2) // force executors to start
- val masterId = SparkEnv.get.blockManager.blockManagerId
assert(data.map(markNodeIfIdentity).collect.size === 2)
assert(data.map(failOnMarkedIdentity).collect.size === 2)
}