EECOLOR
EECOLOR

Reputation: 11244

Play Framework 2.2 - could not find implicit value for parameter timeout

I am testing a call using the following code:

"status OK" in {
  status(doFakeRequest) === OK
}

The call to status gives the following compile error: could not find implicit value for parameter timeout: akka.util.Timeout

Upvotes: 4

Views: 1326

Answers (1)

EECOLOR
EECOLOR

Reputation: 11244

This is because the Helpers functions have changed. The timeout can now be changed for each function.

I needed to add the following import:

import play.api.test.Helpers.defaultAwaitTimeout

Upvotes: 7

Related Questions