Fix the latestdeptests
This commit is contained in:
parent
6fa94ed9ac
commit
661a8f5a3e
|
@ -51,3 +51,8 @@ dependencies {
|
|||
exclude group: 'org.eclipse.jetty', module: 'jetty-websocket'
|
||||
}
|
||||
}
|
||||
|
||||
compileLatestDepTestGroovy {
|
||||
classpath = classpath.plus(files(compileLatestDepTestScala.destinationDir))
|
||||
dependsOn compileLatestDepTestScala
|
||||
}
|
||||
|
|
|
@ -12,7 +12,13 @@ import java.util.concurrent.TimeUnit
|
|||
|
||||
class PlayWSClientTest extends HttpClientTest {
|
||||
@Shared
|
||||
def application = new FakeApplication(new File("."), FakeApplication.class.getClassLoader(), Collections.emptyMap(), Collections.emptyList(), new GlobalSettings())
|
||||
def application = new FakeApplication(
|
||||
new File("."),
|
||||
FakeApplication.class.getClassLoader(),
|
||||
Collections.emptyMap(),
|
||||
Collections.emptyList(),
|
||||
new GlobalSettings()
|
||||
)
|
||||
|
||||
def setup() {
|
||||
Helpers.start(application)
|
||||
|
|
Loading…
Reference in New Issue