Skip to content

Commit

Permalink
Merge pull request #17 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 committed Apr 17, 2020
2 parents 15fbfee + 047a148 commit 3fbeb92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -27,7 +27,7 @@ libraryDependencies ++= Seq(
"io.circe" %% "circe-generic" % circeVersion % Test,

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

// Publishing
Expand Down
5 changes: 3 additions & 2 deletions src/test/scala/sangria/marshalling/CirceSupportSpec.scala
@@ -1,14 +1,15 @@
package sangria.marshalling

import org.scalatest.{Matchers, WordSpec}

import sangria.marshalling.circe._
import sangria.marshalling.testkit._

import io.circe.Json
import io.circe.generic.auto._
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec

class CirceSupportSpec extends WordSpec with Matchers with MarshallingBehaviour with InputHandlingBehaviour {
class CirceSupportSpec extends AnyWordSpec with Matchers with MarshallingBehaviour with InputHandlingBehaviour {
"Circe integration" should {
behave like `value (un)marshaller` (CirceResultMarshaller)

Expand Down

0 comments on commit 3fbeb92

Please sign in to comment.