We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4d78e commit 6a1c50dCopy full SHA for 6a1c50d
core/src/test/scala/org/apache/spark/rpc/RpcEnvSuite.scala
@@ -169,7 +169,7 @@ abstract class RpcEnvSuite extends SparkFunSuite with BeforeAndAfterAll {
169
// The SparkException cause should be a RpcTimeoutException with message indicating the
170
// controlling timeout property
171
assert(e.getCause.isInstanceOf[RpcTimeoutException])
172
- assert(e.getCause().getMessage().contains(shortProp))
+ assert(e.getCause.getMessage.contains(shortProp))
173
} finally {
174
anotherEnv.shutdown()
175
anotherEnv.awaitTermination()
0 commit comments