1
0
mirror of https://github.com/go-task/task.git synced 2025-06-23 00:38:19 +02:00

fix travis again

something was wrong with .gitignore rules
This commit is contained in:
Andrey Nering
2017-07-30 21:00:50 -03:00
parent 1eccb61d44
commit f2416d68b8
82 changed files with 6667 additions and 6 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")