summaryrefslogtreecommitdiff
path: root/vendor/github.com/stretchr/testify/require/require.go.tmpl
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2019-09-30 12:40:55 +0000
committerValentin Rothberg <rothberg@redhat.com>2019-09-30 15:07:11 +0200
commit240f4cd639599991263dde9b541933b6702a2607 (patch)
tree05102538850061a54ebca184d94502525046b64a /vendor/github.com/stretchr/testify/require/require.go.tmpl
parent01b7af8ee9b3df1439c4da109ba11e7410108dab (diff)
downloadpodman-240f4cd639599991263dde9b541933b6702a2607.tar.gz
podman-240f4cd639599991263dde9b541933b6702a2607.tar.bz2
podman-240f4cd639599991263dde9b541933b6702a2607.zip
Bump github.com/stretchr/testify from 1.3.0 to 1.4.0
Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.3.0 to 1.4.0. - [Release notes](https://github.com/stretchr/testify/releases) - [Commits](https://github.com/stretchr/testify/compare/v1.3.0...v1.4.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
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()
}