update vendor

This commit is contained in:
deepzz0
2017-07-09 03:33:28 +08:00
parent 5efdd72e58
commit e1ec5cd08a
97 changed files with 22636 additions and 2 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")