Update vendored deps

This commit is contained in:
Matthias Loibl 2019-04-24 18:24:41 +02:00
parent d95948a351
commit 2ac07139f6
No known key found for this signature in database
GPG key ID: 78A796CA74CA38BA
22 changed files with 6045 additions and 0 deletions

10
vendor/github.com/stretchr/testify/assert/errors.go generated vendored Normal file
View file

@ -0,0 +1,10 @@
package assert
import (
"errors"
)
// AnError is an error instance useful for testing. If the code does not care
// about error specifics, and only needs to return the error for example, this
// error should be used to make the test code more readable.
var AnError = errors.New("assert.AnError general error for testing")