Using during (10 seconds / minutes and so forth)

In experimenting with different loadmodels i want to say i.e. during (10 seconds), but intellij keeps saying 'cannot resolve symbol minutes'

Do I have to import something extra to use minutes/ hours/seconds?

Hi,

You have to import the duration scala package :

`
import scala.concurrent.duration._

`

Philippe