fix go_vet error reported by goreportcard.com

Fixed go_vet error:
 Line 413: error: TestisValidPluginMode has malformed name: first letter after 'Test' must not be lowercase (vet)
This commit is contained in:
Ed Bartosh 2018-05-29 10:50:52 +03:00
parent c3d89a7a4b
commit ce2437d5ec

View File

@ -410,7 +410,7 @@ func TestAllocate(t *testing.T) {
}
}
func TestisValidPluginMode(t *testing.T) {
func TestIsValidPluginMode(t *testing.T) {
tcases := []struct {
input pluginMode
output bool