summaryrefslogtreecommitdiff
path: root/vendor/github.com/stretchr/testify/require/require.go.tmpl
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-09-30 11:32:54 -0700
committerGitHub <noreply@github.com>2019-09-30 11:32:54 -0700
commitdee2b695e82cf86797b7e64fea1ffec1c089a0c2 (patch)
tree12bc6ddab33605f9039857d577cce688a0a6f7e4 /vendor/github.com/stretchr/testify/require/require.go.tmpl
parent2c23729c84775113a6c2cd7593f588cc6ea4e5fa (diff)
parent240f4cd639599991263dde9b541933b6702a2607 (diff)
downloadpodman-dee2b695e82cf86797b7e64fea1ffec1c089a0c2.tar.gz
podman-dee2b695e82cf86797b7e64fea1ffec1c089a0c2.tar.bz2
podman-dee2b695e82cf86797b7e64fea1ffec1c089a0c2.zip
Merge pull request #4146 from containers/dependabot/go_modules/github.com/stretchr/testify-1.4.0
Bump github.com/stretchr/testify from 1.3.0 to 1.4.0
Diffstat (limited to 'vendor/github.com/stretchr/testify/require/require.go.tmpl')
-rw-r--r--vendor/github.com/stretchr/testify/require/require.go.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/stretchr/testify/require/require.go.tmpl b/vendor/github.com/stretchr/testify/require/require.go.tmpl
index 6ffc751b5..55e42ddeb 100644
--- a/vendor/github.com/stretchr/testify/require/require.go.tmpl
+++ b/vendor/github.com/stretchr/testify/require/require.go.tmpl
@@ -1,6 +1,6 @@
{{.Comment}}
func {{.DocInfo.Name}}(t TestingT, {{.Params}}) {
- if assert.{{.DocInfo.Name}}(t, {{.ForwardedParams}}) { return }
if h, ok := t.(tHelper); ok { h.Helper() }
+ if assert.{{.DocInfo.Name}}(t, {{.ForwardedParams}}) { return }
t.FailNow()
}