Skip to content

Commit

Permalink
Update test names.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshRosen committed Jun 2, 2016
1 parent e26b2f6 commit 0c51bb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/test/scala/org/apache/spark/FailureSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ class FailureSuite extends SparkFunSuite with LocalSparkContext {
FailureSuiteState.clear()
}

test("failure because cached RDD files are missing") {
test("failure because cached RDD partitions are missing from DiskStore (SPARK-15736)") {
sc = new SparkContext("local[1,2]", "test")
val rdd = sc.parallelize(1 to 2, 2).persist(StorageLevel.DISK_ONLY)
rdd.count()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ class BlockManagerSuite extends SparkFunSuite with Matchers with BeforeAndAfterE
assert(store.getStatus("blockId").isEmpty)
}

test("remove cached block if a read fails due to missing on-disk files") {
test("remove block if a read fails due to missing DiskStore files (SPARK-15736)") {
val storageLevels = Seq(
StorageLevel(useDisk = true, useMemory = false, deserialized = false),
StorageLevel(useDisk = true, useMemory = false, deserialized = true))
Expand Down

0 comments on commit 0c51bb6

Please sign in to comment.