File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
core/src/test/scala/org/apache/spark/serializer Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff 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 ))
You can’t perform that action at this time.
0 commit comments