summaryrefslogtreecommitdiff
path: root/src/test/scala/spray/json/RoundTripSpecs.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/spray/json/RoundTripSpecs.scala')
-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 d9e16c1..7609a53 100644
--- a/src/test/scala/spray/json/RoundTripSpecs.scala
+++ b/src/test/scala/spray/json/RoundTripSpecs.scala
@@ -20,7 +20,7 @@ object JsValueGenerators {
for {
n <- choose(0, 15)
els <- Gen.containerOfN[List, JsValue](n, genValue(depth - 1))
- } yield JsArray(els)
+ } yield JsArray(els.toVector)
def genField(depth: Int): Gen[(String, JsValue)] =
for {
key <- parseableString
@@ -32,7 +32,7 @@ object JsValueGenerators {
for {
n <- choose(0, 15)
fields <- Gen.containerOfN[List, (String, JsValue)](n, genField(depth - 1))
- } yield JsObject(fields)
+ } yield JsObject(fields: _*)
def genValue(depth: Int): Gen[JsValue] =
oneOf(