Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ lazy val sprayJsonVersion = "1.3.5"
lazy val kafkaClientVersion = "2.3.0"
lazy val jsoninterScalaVersion = "1.0.0"
lazy val confluentPlatformVersion = "5.3.2"
lazy val scalaTestVersion = "3.0.8"
lazy val scalaTestVersion = "3.2.2"
lazy val scalaCheckVersion = "1.14.3"
lazy val scalaMockVersion = "3.6.0"
lazy val wiremockVersion = "2.24.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import org.scalacheck.{Arbitrary, Gen}
import org.scalacheck.Arbitrary._
import org.scalatest.concurrent.{ScalaFutures, ScaledTimeSpans}
import org.scalatest.prop.PropertyChecks
import org.scalatest.{Matchers, WordSpec}
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec

object UnitSpec {

Expand All @@ -38,7 +39,7 @@ object UnitSpec {

}

abstract class UnitSpec extends WordSpec with Matchers with PropertyChecks with ScalaFutures with ScaledTimeSpans {
abstract class UnitSpec extends AnyWordSpec with Matchers with PropertyChecks with ScalaFutures with ScaledTimeSpans {

override lazy val spanScaleFactor: Double =
sys.env.get("TEST_TIME_FACTOR").map(_.toDouble).getOrElse(super.spanScaleFactor)
Expand Down