aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Haberman <stephen@exigencecorp.com>2013-02-16 00:33:49 -0600
committerStephen Haberman <stephen@exigencecorp.com>2013-02-16 00:33:49 -0600
commit6a2d95784366c8e7e54140ae6482e14acbd4d759 (patch)
tree06efbb53ae4783bcecc3faedb67f5c2fba810236
parent37397106ce64106b1d0dedd6ab428649e08a56cd (diff)
downloadspark-6a2d95784366c8e7e54140ae6482e14acbd4d759.tar.gz
spark-6a2d95784366c8e7e54140ae6482e14acbd4d759.tar.bz2
spark-6a2d95784366c8e7e54140ae6482e14acbd4d759.zip
Tweak test names.
-rw-r--r--core/src/test/scala/spark/ShuffleSuite.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/test/scala/spark/ShuffleSuite.scala b/core/src/test/scala/spark/ShuffleSuite.scala
index ab7060a1ac..0cff5b7ff7 100644
--- a/core/src/test/scala/spark/ShuffleSuite.scala
+++ b/core/src/test/scala/spark/ShuffleSuite.scala
@@ -212,7 +212,7 @@ class ShuffleSuite extends FunSuite with ShouldMatchers with LocalSparkContext {
assert(rdd.values.collect().toList === List("a", "b"))
}
- test("default partition size uses split size") {
+ test("default partitioner uses split size") {
sc = new SparkContext("local", "test")
// specify 2000 splits
val a = sc.makeRDD(Array(1, 2, 3, 4), 2000)
@@ -223,7 +223,7 @@ class ShuffleSuite extends FunSuite with ShouldMatchers with LocalSparkContext {
assert(c.splits.size === 2000)
}
- test("default partition uses largest partitioner") {
+ test("default partitioner uses largest partitioner") {
sc = new SparkContext("local", "test")
val a = sc.makeRDD(Array((1, "a"), (2, "b")), 2)
val b = sc.makeRDD(Array((1, "a"), (2, "b")), 2000)