File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ scalacOptions ++= (CrossVersion.partialVersion(scalaVersion.value) match {
4747})
4848
4949libraryDependencies ++= Seq (
50- " org.scalatest" %% " scalatest" % " 3.0.8 " % " test"
50+ " org.scalatest" %% " scalatest" % " 3.1.0 " % " test"
5151)
5252
5353publishMavenStyle := true
Original file line number Diff line number Diff line change 1- import org . scalatest .{ FlatSpec , Matchers }
1+
22import util .retry .blocking .RetryStrategy .RetryStrategyProducer
33import util .retry .blocking ._
44
55import scala .concurrent .{ExecutionContext , Future }
66import scala .concurrent .duration ._
7+ import org .scalatest .flatspec .AnyFlatSpec
8+ import org .scalatest .matchers .should .Matchers
79
810/**
911 * Created by dev on 11/03/16.
1012 */
11- class RetryDslSpec extends FlatSpec with Matchers {
13+ class RetryDslSpec extends AnyFlatSpec with Matchers {
1214
1315 implicit val retryStrategy : RetryStrategyProducer =
1416 RetryStrategy .fixedBackOff(retryDuration = 1 .seconds, maxAttempts = 2 )
Original file line number Diff line number Diff line change @@ -3,11 +3,13 @@ import util.retry.blocking.RetryStrategy.RetryStrategyProducer
33import util .retry .blocking ._
44
55import scala .concurrent .duration ._
6+ import org .scalatest .flatspec .AnyFlatSpec
7+ import org .scalatest .matchers .should .Matchers
68
79/**
810 * Created by dev on 7/2/14.
911 */
10- trait AbstractRetrySpec extends FlatSpec with Matchers {
12+ trait AbstractRetrySpec extends AnyFlatSpec with Matchers {
1113
1214 implicit val retryStrategy : () => RetryStrategy
1315
You can’t perform that action at this time.
0 commit comments