Skip to content

Commit

Permalink
test fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
bnasslahsen committed Nov 19, 2022
1 parent dd251e3 commit 5449d72
Showing 1 changed file with 1 addition and 66 deletions.
Original file line number Diff line number Diff line change
@@ -1,66 +1 @@
{
"openapi": "3.0.1",
"info": {
"title": "OpenAPI definition",
"version": "v0"
},
"servers": [
{
"url": "http://localhost",
"description": "Generated server url"
}
],
"paths": {
"/testA": {
"get": {
"operationId": "testA",
"parameters": [
{
"in": "query",
"name": "hello",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK"
}
},
"tags": [
"hello-controller"
]
}
},
"/testB": {
"get": {
"operationId": "testB",
"parameters": [
{
"in": "query",
"name": "hello",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK"
}
},
"tags": [
"hello-controller"
]
}
}
},
"components": {},
"x-my-vendor-extensions": {
"property1": "value1",
"property2": null
}
}
{"openapi":"3.0.1","info":{"title":"OpenAPI definition","version":"v0"},"servers":[{"url":"http://localhost","description":"Generated server url"}],"paths":{"/testA":{"get":{"operationId":"testA","parameters":[{"in":"query","name":"hello","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK"}},"tags":["hello-controller"]}},"/testB":{"get":{"operationId":"testB","parameters":[{"in":"query","name":"hello","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK"}},"tags":["hello-controller"]}}},"components":{},"x-my-vendor-extensions":{"property1":"value1","property2":null}}

0 comments on commit 5449d72

Please sign in to comment.