File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
openapi-parser/src/test/kotlin/io/openapiparser Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,11 @@ package io.openapiparser
88import io.kotest.core.spec.style.StringSpec
99import io.kotest.matchers.shouldBe
1010import io.openapiparser.model.v31.OpenApi
11- import io.openapiprocessor.jackson.JacksonJsonWriter
1211import io.openapiprocessor.jackson.JacksonYamlWriter
1312import io.openapiprocessor.jsonschema.reader.UriReader
1413import io.openapiprocessor.jsonschema.schema.DocumentLoader
1514import io.openapiprocessor.jsonschema.schema.DocumentStore
1615import io.openapiprocessor.snakeyaml.SnakeYamlConverter
17- import io.openapiprocessor.snakeyaml.SnakeYamlWriter
18- import java.io.FileWriter
1916import java.io.StringWriter
2017import java.net.URI
2118
@@ -66,7 +63,7 @@ class BundleSpec : StringSpec({
6663 // val bundledResult = bundledParser.parse(URI.create("/bundled/openapi.yaml"), bundled)
6764
6865 val api = bundledResult.getModel(OpenApi ::class.java)
69- val summary = api.info.summary
66+ api.info.summary
7067
7168 // write the bundled OpenAPI document. Use the alternative constructor to configure the
7269 // jackson, snake yaml specific formatting.
You can’t perform that action at this time.
0 commit comments