diff --git a/modules/openapi-generator/src/test/resources/bugs/issue_17343.yaml b/modules/openapi-generator/src/test/resources/bugs/issue_17343.yaml deleted file mode 100644 index b7346c28232f..000000000000 --- a/modules/openapi-generator/src/test/resources/bugs/issue_17343.yaml +++ /dev/null @@ -1,46 +0,0 @@ -swagger: "2.0" -info: - version: 1.0.0 - title: x-discriminator-value bug -paths: - /getItems: - get: - description: test - operationId: getAllPets - responses: - 200: - description: 'list of PetItems' - schema: - type: array - items: - $ref: '#/definitions/PetItem' -definitions: - PetType: - type: string - enum: - - DOG - - CAT - PetItem: - discriminator: type - properties: - identifier: - type: string - type: - $ref: '#/definitions/PetType' - - DogItem: - x-discriminator-value: DOG - allOf: - - $ref: '#/definitions/PetItem' - - type: object - properties: - packSize: - type: integer - CatItem: - x-discriminator-value: CAT - allOf: - - $ref: '#/definitions/PetItem' - - type: object - properties: - huntingSkill: - type: string