Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix Webflux tests.
  • Loading branch information
MaksimOrlov committed Oct 5, 2019
1 parent 808e7e5 commit da9f705
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"description": "Pet object that needs to be added to the store",
"required": true,
"schema": {
"$ref": "#/definitions/Pet"
"$ref": "#/definitions/Pet_1"
}
}
],
Expand Down Expand Up @@ -104,7 +104,7 @@
"description": "Pet object that needs to be added to the store",
"required": true,
"schema": {
"$ref": "#/definitions/Pet"
"$ref": "#/definitions/Pet_1"
}
}
],
Expand Down Expand Up @@ -170,7 +170,7 @@
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Pet_1"
"$ref": "#/definitions/Pet"
}
}
},
Expand Down Expand Up @@ -217,7 +217,7 @@
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Pet_1"
"$ref": "#/definitions/Pet"
}
}
},
Expand Down Expand Up @@ -263,7 +263,7 @@
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/Pet_1"
"$ref": "#/definitions/Pet"
}
},
"400": {
Expand Down Expand Up @@ -834,9 +834,6 @@
"definitions": {
"Category": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "integer",
Expand All @@ -850,6 +847,9 @@
},
"Category_1": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "integer",
Expand Down Expand Up @@ -909,6 +909,10 @@
"type": "integer",
"format": "int64"
},
"identifier": {
"type": "integer",
"format": "int64"
},
"name": {
"type": "string"
},
Expand Down Expand Up @@ -946,10 +950,6 @@
"type": "integer",
"format": "int64"
},
"identifier": {
"type": "integer",
"format": "int64"
},
"name": {
"type": "string"
},
Expand Down

0 comments on commit da9f705

Please sign in to comment.