Skip to content

Commit f3935aa

Browse files
committed
Relax timeout for test
1 parent ae4ac91 commit f3935aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

job-server/test/spark.jobserver/JobManagerSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ abstract class JobManagerSpec extends JobSpecBase(JobManagerSpec.getNewSystem) {
2828
it("should return error message if classPath does not match") {
2929
uploadTestJar()
3030
manager ! JobManagerActor.Initialize
31-
expectMsgClass(classOf[JobManagerActor.Initialized])
31+
expectMsgClass(Duration(6, SECONDS), classOf[JobManagerActor.Initialized])
3232
manager ! JobManagerActor.StartJob("demo", "no.such.class", emptyConfig, Set.empty[Class[_]])
3333
expectMsg(CommonMessages.NoSuchClass)
3434
}

0 commit comments

Comments
 (0)