Skip to content

Commit

Permalink
reimplement repeat politic
Browse files Browse the repository at this point in the history
  • Loading branch information
siller174 committed Aug 3, 2024
1 parent 3a3acf3 commit 800889d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion jsonschema.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func (it *Test) validateJSONSchema(t internalT, body []byte) []error {
return nil
}

return it.executeWithStep(t, "Validate body by JSON schema", func(t T) []error {
return it.executeWithStep(t, "Validate body by JSON schema", func(_ T) []error {
return checkJSONSchema(expect, body)
})
}
Expand Down
1 change: 1 addition & 0 deletions step.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package cute

import (
"fmt"

"github.com/ozontech/allure-go/pkg/allure"
"github.com/ozontech/allure-go/pkg/framework/provider"
"github.com/ozontech/cute/errors"
Expand Down

0 comments on commit 800889d

Please sign in to comment.