Skip to content

Commit

Permalink
Fixing mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbdias committed Mar 30, 2023
1 parent 9e2ae1c commit 1ed559b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/http/mappings/test_run_events.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func (m OpenAPI) TestRunEvents(in []model.TestRunEvent) []openapi.TestRunEvent {

func (m OpenAPI) TestRunEvent(in model.TestRunEvent) openapi.TestRunEvent {
return openapi.TestRunEvent{
Type: in.Type,
Type: string(in.Type),
Stage: string(in.Stage),
Description: in.Description,
CreatedAt: in.CreatedAt,
Expand Down

0 comments on commit 1ed559b

Please sign in to comment.