Skip to content

Commit

Permalink
put issue number
Browse files Browse the repository at this point in the history
  • Loading branch information
kota65535 committed Feb 3, 2024
1 parent b410a3e commit fd8e582
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ public void arrayParameterDefaultValueDoesNotNeedBraces() throws Exception {
ParseOptions parseOptions = new ParseOptions();
parseOptions.setResolve(true);
final OpenAPI openAPI = new OpenAPIParser()
.readLocation("src/test/resources/3_0/issue_xxxxx.yaml", null, parseOptions)
.readLocation("src/test/resources/3_0/issue_17779.yaml", null, parseOptions)
.getOpenAPI();
final P_AbstractJavaCodegen codegen = new P_AbstractJavaCodegen();
codegen.setOpenAPI(openAPI);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ paths:
- name: fileEnumWithDefault
in: query
schema:
$ref: './issue_xxxxx_enum_with_default.yaml'
$ref: './issue_17779_enum_with_default.yaml'
- name: fileEnumWithDefaultEmpty
in: query
schema:
$ref: './issue_xxxxx_enum_with_default_empty.yaml'
$ref: './issue_17779_enum_with_default_empty.yaml'
- name: inlineEnumWithDefault
in: query
schema:
Expand Down Expand Up @@ -49,6 +49,6 @@ components:
type: object
properties:
withDefault:
$ref: './issue_xxxxx_enum_with_default.yaml'
$ref: './issue_17779_enum_with_default.yaml'
withEmptyDefault:
$ref: './issue_xxxxx_enum_with_default_empty.yaml'
$ref: './issue_17779_enum_with_default_empty.yaml'

0 comments on commit fd8e582

Please sign in to comment.