Skip to content

Commit

Permalink
Merge pull request #74 from hellofresh/patch/fix-openapi-spec
Browse files Browse the repository at this point in the history
EES-4643 Fixed openapi spec
  • Loading branch information
vgarvardt authored Nov 27, 2020
2 parents 78c7610 + 640536b commit d361a2d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 16 deletions.
21 changes: 6 additions & 15 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -416,25 +416,16 @@
"type": "integer"
},
"envVars": {
"type": "array",
"items": {
"type": "string",
"format": "file"
}
"type": "string",
"format": "file"
},
"testData": {
"type": "array",
"items": {
"type": "string",
"format": "file"
}
"type": "string",
"format": "file"
},
"testFile": {
"type": "array",
"items": {
"type": "string",
"format": "file"
}
"type": "string",
"format": "file"
},
"type": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion pkg/proxy/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const (

var (
// ErrFileToStringEmpty is the error returned when the defined users file is empty
ErrFileToStringEmpty error = errors.New("file is empty")
ErrFileToStringEmpty = errors.New("file is empty")
)

type loadTestSpecCreator func(*http.Request, backends.Config, *zap.Logger) (apisLoadTestV1.LoadTestSpec, error)
Expand Down

0 comments on commit d361a2d

Please sign in to comment.