summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/test/scala/spray/json/RoundTripSpecs.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/spray/json/RoundTripSpecs.scala b/src/test/scala/spray/json/RoundTripSpecs.scala
index c4f7764..24b2354 100644
--- a/src/test/scala/spray/json/RoundTripSpecs.scala
+++ b/src/test/scala/spray/json/RoundTripSpecs.scala
@@ -2,7 +2,7 @@ package spray.json
import org.specs2.mutable.Specification
import org.scalacheck._
-import org.specs2.matcher.ScalaCheckMatchers
+import org.specs2.ScalaCheck
object JsValueGenerators {
import Gen._
@@ -47,7 +47,7 @@ object JsValueGenerators {
implicit val arbitraryValue: Arbitrary[JsValue] = Arbitrary(genValue(5))
}
-class RoundTripSpecs extends Specification with ScalaCheckMatchers {
+class RoundTripSpecs extends Specification with ScalaCheck {
import JsValueGenerators.arbitraryValue
"Parsing / Printing round-trip" should {