aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2012-07-27 16:28:18 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2012-07-27 16:28:18 -0700
commitc0c78d21194d880b4a723c7083c6c45bec966c33 (patch)
tree74cdd3ed3877134741f3185cfc7370c62d5a0a32
parentdee8ff1b9da2381b7542dfb2d8085fa45372ec36 (diff)
downloadspark-c0c78d21194d880b4a723c7083c6c45bec966c33.tar.gz
spark-c0c78d21194d880b4a723c7083c6c45bec966c33.tar.bz2
spark-c0c78d21194d880b4a723c7083c6c45bec966c33.zip
Renamed test more descriptively
-rw-r--r--core/src/test/scala/spark/storage/BlockManagerSuite.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/test/scala/spark/storage/BlockManagerSuite.scala b/core/src/test/scala/spark/storage/BlockManagerSuite.scala
index 027d1423d4..15f4b9c6b3 100644
--- a/core/src/test/scala/spark/storage/BlockManagerSuite.scala
+++ b/core/src/test/scala/spark/storage/BlockManagerSuite.scala
@@ -224,7 +224,7 @@ class BlockManagerSuite extends FunSuite with BeforeAndAfterEach {
assert(store.get("list4").get.size === 2)
}
- test("ByteBufferInputStream bugs") {
+ test("negative byte values in ByteBufferInputStream") {
val buffer = ByteBuffer.wrap(Array[Int](254, 255, 0, 1, 2).map(_.toByte).toArray)
val stream = new ByteBufferInputStream(buffer)
val temp = new Array[Byte](10)