Skip to content

Commit da75d34

Browse files
committed
Removed unnecessary lines.
1 parent 50a608d commit da75d34

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

core/src/test/scala/org/apache/spark/serializer/SerializationDebuggerSuite.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ class SerializationDebuggerSuite extends SparkFunSuite with BeforeAndAfterEach {
113113

114114
test("object containing writeReplace() which returns not serializable object") {
115115
val s = find(new SerializableClassWithWriteReplace(new NotSerializable))
116-
println("-----\n" + s.zipWithIndex.mkString("\n") + "\n----")
117116
assert(s.size === 3)
118117
assert(s(0).contains("NotSerializable"))
119118
assert(s(1).contains("writeReplace"))
@@ -122,7 +121,6 @@ class SerializationDebuggerSuite extends SparkFunSuite with BeforeAndAfterEach {
122121

123122
test("object containing writeObject() and not serializable field") {
124123
val s = find(new SerializableClassWithWriteObject(new NotSerializable))
125-
println("-----\n" + s.zipWithIndex.mkString("\n") + "\n----")
126124
assert(s.size === 3)
127125
assert(s(0).contains("NotSerializable"))
128126
assert(s(1).contains("writeObject data"))
@@ -133,7 +131,6 @@ class SerializationDebuggerSuite extends SparkFunSuite with BeforeAndAfterEach {
133131
assert(find(new SerializableClassWithWriteObject(new SerializableClass1)).isEmpty)
134132
}
135133

136-
137134
test("object of serializable subclass with more fields than superclass (SPARK-7180)") {
138135
// This should not throw ArrayOutOfBoundsException
139136
find(new SerializableSubclass(new SerializableClass1))

0 commit comments

Comments
 (0)