Skip to content
This repository has been archived by the owner on Oct 26, 2020. It is now read-only.

Update scalatest to 3.1.0 #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
@@ -16,7 +16,7 @@ libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-json" % "2.7.4",

"org.sangria-graphql" %% "sangria-marshalling-testkit" % "1.0.2" % Test,
"org.scalatest" %% "scalatest" % "3.0.8" % Test)
"org.scalatest" %% "scalatest" % "3.1.0" % Test)

// Publishing

5 changes: 3 additions & 2 deletions src/test/scala/sangria/marshalling/PlayJsonSupportSpec.scala
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package sangria.marshalling

import org.scalatest.{Matchers, WordSpec}
import play.api.libs.json._

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


class PlayJsonSupportSpec extends WordSpec with Matchers with MarshallingBehaviour with InputHandlingBehaviour with ParsingBehaviour {
class PlayJsonSupportSpec extends AnyWordSpec with Matchers with MarshallingBehaviour with InputHandlingBehaviour with ParsingBehaviour {
implicit val commentFormat = Json.format[Comment]
implicit val articleFormat = Json.format[Article]