Skip to content

Commit

Permalink
Update scalatest to 3.1.0 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored and sirocchj committed Dec 1, 2019
1 parent 6bf32d6 commit 4b37317
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ lazy val eisner = project
"org.apache.kafka" % "kafka-streams" % "2.3.1",
"org.clapper" %% "classutil" % "1.5.1",
"org.scala-lang.modules" %% "scala-java8-compat" % "0.9.0",
"org.scalatest" %% "scalatest" % "3.0.8" % Test
"org.scalatest" %% "scalatest" % "3.1.0" % Test
),
scalacOptions := Seq(
"-deprecation",
Expand Down
4 changes: 3 additions & 1 deletion src/test/scala/eisner/BaseEisnerSpec.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package eisner

import org.scalatest.{AsyncWordSpec, EitherValues, Matchers}
import org.scalatest.EitherValues
import scala.io.Source
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AsyncWordSpec

abstract class BaseEisnerSpec(i: Int) extends AsyncWordSpec with Matchers with EitherValues {
def expectedDiGraph: DiGraph
Expand Down

0 comments on commit 4b37317

Please sign in to comment.