From ce2437d5ece582dd5fe096e49af584f065bd7b12 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Tue, 29 May 2018 10:50:52 +0300 Subject: [PATCH] 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) --- cmd/fpga_plugin/fpga_plugin_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/fpga_plugin/fpga_plugin_test.go b/cmd/fpga_plugin/fpga_plugin_test.go index 77ab6f69..4fc14869 100644 --- a/cmd/fpga_plugin/fpga_plugin_test.go +++ b/cmd/fpga_plugin/fpga_plugin_test.go @@ -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