mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
Upgrade go dependencies (#50)
* upgrade go dependencies. * remove testify deep equal.
This commit is contained in:
@ -1,10 +1,9 @@
|
||||
package plugins
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"github.com/demodesk/neko/pkg/types"
|
||||
)
|
||||
|
||||
@ -591,7 +590,9 @@ func Test_deps_addPlugin(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
assert.Equal(t, tt.want, d.deps)
|
||||
if !reflect.DeepEqual(d.deps, tt.want) {
|
||||
t.Errorf("deps = %v, want %v", d.deps, tt.want)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user