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 #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Expand Up @@ -23,7 +23,7 @@ libraryDependencies ++= Seq(
"io.spray" %% "spray-json" % "1.3.5",

"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
Expand Down
5 changes: 3 additions & 2 deletions src/test/scala/sangria/marshalling/SprayJsonSupportSpec.scala
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package sangria.marshalling

import org.scalatest.{Matchers, WordSpec}

import sangria.marshalling.sprayJson._
import sangria.marshalling.testkit._

import spray.json._
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec

class SprayJsonSupportSpec extends WordSpec with Matchers with MarshallingBehaviour with InputHandlingBehaviour with ParsingBehaviour {
class SprayJsonSupportSpec extends AnyWordSpec with Matchers with MarshallingBehaviour with InputHandlingBehaviour with ParsingBehaviour {
object JsonProtocol extends DefaultJsonProtocol {
implicit val commentFormat = jsonFormat2(Comment.apply)
implicit val articleFormat = jsonFormat4(Article.apply)
Expand Down