fix spelling mistake

Fixed misspell warning pointed out by goreportcard.com:

misspell 83%
Misspell Finds commonly misspelled English words
intel-device-plugins-for-kubernetes/internal/deviceplugin/deviceplugin_test.go
Line 90: warning: "emtpy" is a misspelling of "empty" (misspell)
This commit is contained in:
Ed Bartosh 2018-05-25 10:56:31 +03:00
parent 6c91dbd8f5
commit fc36349e90

View File

@ -87,7 +87,7 @@ func (ps *pluginStub) GetDevicePluginOptions(ctx context.Context, empty *plugina
return new(pluginapi.DevicePluginOptions), nil return new(pluginapi.DevicePluginOptions), nil
} }
func (ps *pluginStub) ListAndWatch(emtpy *pluginapi.Empty, stream pluginapi.DevicePlugin_ListAndWatchServer) error { func (ps *pluginStub) ListAndWatch(empty *pluginapi.Empty, stream pluginapi.DevicePlugin_ListAndWatchServer) error {
return nil return nil
} }