Skip to content

Commit d01e112

Browse files
committed
Update code style
1 parent 9a2d7ba commit d01e112

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/test/scala/org/apache/spark/scheduler/BlacklistIntegrationSuite.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ class BlacklistIntegrationSuite extends SchedulerIntegrationSuite[MultiExecutorM
115115
withBackend(runBackend _) {
116116
val jobFuture = submit(new MockRDD(sc, 10, Nil), (0 until 10).toArray)
117117
awaitJobTermination(jobFuture, duration)
118-
val pattern = (s"""
119-
|Aborting TaskSet 0.0 because task .*
120-
|cannot run anywhere due to node and executor blacklist""".stripMargin).r
118+
val pattern = (
119+
s"""|Aborting TaskSet 0.0 because task .*
120+
|cannot run anywhere due to node and executor blacklist""".stripMargin).r
121121
assert(pattern.findFirstIn(failure.getMessage).isDefined,
122122
s"Couldn't find $pattern in ${failure.getMessage()}")
123123
}

0 commit comments

Comments
 (0)