Skip to content

Commit

Permalink
Merge pull request #18 from scala-steward/update/scalatest-3.1.1
Browse files Browse the repository at this point in the history
Update scalatest to 3.1.1
  • Loading branch information
yanns authored Apr 17, 2020
2 parents b8e36d9 + c209b09 commit 5033f02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ libraryDependencies ++= Seq(
"io.argonaut" %% "argonaut" % "6.2.3",

"org.sangria-graphql" %% "sangria-marshalling-testkit" % "1.0.3" % Test,
"org.scalatest" %% "scalatest" % "3.0.8" % Test
"org.scalatest" %% "scalatest" % "3.1.1" % Test
)

git.remoteRepo := "[email protected]:sangria-graphql/sangria-argonaut.git"
Expand Down
5 changes: 3 additions & 2 deletions src/test/scala/sangria/marshalling/ArgonautSupportSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ package sangria.marshalling

import _root_.argonaut._
import _root_.argonaut.Argonaut._
import org.scalatest.{Matchers, WordSpec}

import sangria.marshalling.argonaut._
import sangria.marshalling.testkit._
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec

class ArgonautSupportSpec extends WordSpec with Matchers with MarshallingBehaviour with InputHandlingBehaviour with ParsingBehaviour {
class ArgonautSupportSpec extends AnyWordSpec with Matchers with MarshallingBehaviour with InputHandlingBehaviour with ParsingBehaviour {
"ArgonautJson integration" should {
implicit def CommentCodecJson: CodecJson[Comment] =
casecodec2(Comment.apply, Comment.unapply)("author", "text")
Expand Down

0 comments on commit 5033f02

Please sign in to comment.