From f58f68739b11fde979c4c720da22014a3a83a189 Mon Sep 17 00:00:00 2001 From: Jules Ivanic Date: Fri, 23 Aug 2024 20:14:24 +1000 Subject: [PATCH] Fix test --- .../zio/http/endpoint/openapi/OpenAPIGenSpec.scala | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/zio-http/jvm/src/test/scala/zio/http/endpoint/openapi/OpenAPIGenSpec.scala b/zio-http/jvm/src/test/scala/zio/http/endpoint/openapi/OpenAPIGenSpec.scala index 9f06384b80..6b5f7545d0 100644 --- a/zio-http/jvm/src/test/scala/zio/http/endpoint/openapi/OpenAPIGenSpec.scala +++ b/zio-http/jvm/src/test/scala/zio/http/endpoint/openapi/OpenAPIGenSpec.scala @@ -2812,6 +2812,12 @@ object OpenAPIGenSpec extends ZIOSpecDefault { | "nestedOption" : { | "$ref" : "#/components/schemas/Recursive" | }, + | "nestedMap" : { + | "type" : "object", + | "additionalProperties" : { + | "$ref" : "#/components/schemas/Recursive" + | } + | }, | "nestedList" : { | "type" : | "array", @@ -2819,12 +2825,6 @@ object OpenAPIGenSpec extends ZIOSpecDefault { | "$ref" : "#/components/schemas/Recursive" | } | }, - | "nestedMap" : { - | "type" : "object", - | "additionalProperties" : { - | "$ref" : "#/components/schemas/Recursive" - | } - | }, | "nestedOverAnother" : { | "$ref" : "#/components/schemas/NestedRecursive" | }