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

12
vendor/github.com/stretchr/testify/package_test.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
package testify
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestImports(t *testing.T) {
if assert.Equal(t, 1, 1) != true {
t.Error("Something is wrong.")
}
}