From 5261a8a8bb10005d468950edebe6450454da17b9 Mon Sep 17 00:00:00 2001 From: Chris Lewis Date: Wed, 18 Apr 2018 13:57:26 -0700 Subject: [PATCH] Make golint happy. This CL makes golint happy by adding comments and removing underscores. Code cultivation! Reviewed-by: Ross Light --- internal/goose/goose_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/goose/goose_test.go b/internal/goose/goose_test.go index b1ef8b8..7a22c72 100644 --- a/internal/goose/goose_test.go +++ b/internal/goose/goose_test.go @@ -297,9 +297,9 @@ const ( func magicGOPATH() string { if runtime.GOOS == "windows" { return magicGOPATHWindows - } else { - return magicGOPATHUnix } + + return magicGOPATHUnix } func (test *testCase) hasSubdir(root, dir string) (rel string, ok bool) {