From 3d78e6a1b2d0a6cf25c024894a2dda4bd92a956d Mon Sep 17 00:00:00 2001 From: Brice Rising Date: Tue, 11 Dec 2018 08:55:43 -0500 Subject: [PATCH] Run gofmt -s -w using official golang docker image For some reason, gofmt -s -w produced a different result than running gofmt on my host os Signed-off-by: Brice Rising --- pkg/fsutil/fs_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/fsutil/fs_test.go b/pkg/fsutil/fs_test.go index 8652cfec7..072c5ce49 100644 --- a/pkg/fsutil/fs_test.go +++ b/pkg/fsutil/fs_test.go @@ -575,9 +575,9 @@ func TestIsDir(t *testing.T) { exists bool err bool }{ - wd: {true, false}, - filepath.Join(wd, "testdata"): {true, false}, - filepath.Join(wd, "main.go"): {false, true}, + wd: {true, false}, + filepath.Join(wd, "testdata"): {true, false}, + filepath.Join(wd, "main.go"): {false, true}, filepath.Join(wd, "this_file_does_not_exist.thing"): {false, true}, dn: {false, true}, }