Skip to content

Commit 96df26b

Browse files
committed
Add spaces between tests
1 parent 081a0b6 commit 96df26b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

core/src/test/scala/org/apache/spark/SparkContextSchedulerCreationSuite.scala

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,11 @@ class SparkContextSchedulerCreationSuite
9999
case e: Throwable => fail(e)
100100
}
101101
}
102+
102103
test("yarn-standalone") {
103104
testYarn("yarn-standalone", "org.apache.spark.scheduler.cluster.YarnClusterScheduler")
104105
}
106+
105107
test("yarn-client") {
106108
testYarn("yarn-client", "org.apache.spark.scheduler.cluster.YarnClientClusterScheduler")
107109
}
@@ -120,14 +122,17 @@ class SparkContextSchedulerCreationSuite
120122
case e: Throwable => fail(e)
121123
}
122124
}
125+
123126
test("mesos fine-grained") {
124127
System.setProperty("spark.mesos.coarse", "false")
125128
testMesos("mesos://localhost:1234", classOf[MesosSchedulerBackend])
126129
}
130+
127131
test("mesos coarse-grained") {
128132
System.setProperty("spark.mesos.coarse", "true")
129133
testMesos("mesos://localhost:1234", classOf[CoarseMesosSchedulerBackend])
130134
}
135+
131136
test("mesos with zookeeper") {
132137
System.setProperty("spark.mesos.coarse", "false")
133138
testMesos("zk://localhost:1234,localhost:2345", classOf[MesosSchedulerBackend])

0 commit comments

Comments
 (0)