Skip to content

Commit

Permalink
Run make generate to pass github checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitriy Lukiyanchuk committed Sep 12, 2022
1 parent 5c43605 commit 664f246
Show file tree
Hide file tree
Showing 11 changed files with 117 additions and 107 deletions.
4 changes: 2 additions & 2 deletions internal/test/name-normalizer/name_normalizer.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 22 additions & 22 deletions internal/test/parameters/parameters.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions internal/test/parameters/parameters_test.go
Expand Up @@ -170,8 +170,8 @@ func (t *testServer) GetQueryForm(ctx echo.Context, params GetQueryFormParams) e
if params.Co != nil {
t.complexObject = params.Co
}
if params.N1s != nil {
t.n1param = params.N1s
if params.N1S != nil {
t.n1param = params.N1S
}
return nil
}
Expand Down Expand Up @@ -230,8 +230,8 @@ func (t *testServer) GetCookie(ctx echo.Context, params GetCookieParams) error {
if params.Co != nil {
t.complexObject = params.Co
}
if params.N1s != nil {
t.n1param = params.N1s
if params.N1S != nil {
t.n1param = params.N1S
}
return nil
}
Expand Down Expand Up @@ -690,7 +690,7 @@ func TestClientQueryParams(t *testing.T) {
P: &expectedPrimitive2,
Ps: &expectedPrimitiveString,
Co: &expectedComplexObject,
N1s: &expectedStartingWithNumber,
N1S: &expectedStartingWithNumber,
}

req, err := NewGetQueryFormRequest(server, &qParams)
Expand All @@ -709,7 +709,7 @@ func TestClientQueryParams(t *testing.T) {
Ep: &expectedPrimitive1,
P: &expectedPrimitive2,
Co: &expectedComplexObject,
N1s: &expectedStartingWithNumber,
N1S: &expectedStartingWithNumber,
}
req, err = NewGetCookieRequest(server, &cParams)
assert.NoError(t, err)
Expand Down
24 changes: 12 additions & 12 deletions internal/test/schemas/schemas.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 664f246

Please sign in to comment.