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 b1079d7 commit f48c194Copy full SHA for f48c194
core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala
@@ -159,7 +159,8 @@ class SparkContextSchedulerCreationSuite
159
assert(sched.backend.getClass === expectedClass)
160
} catch {
161
case e: UnsatisfiedLinkError =>
162
- assert(e.getMessage.contains("no mesos in") || e.getMessage.contains("mesos (Not found in java.library.path)"))
+ assert(e.getMessage.contains("no mesos in") ||
163
+ e.getMessage.contains("mesos (Not found in java.library.path)"))
164
logWarning("Mesos not available, could not test actual Mesos scheduler creation")
165
case e: Throwable => fail(e)
166
}
0 commit comments