From 857c90b1ed3a909ff41fa4c34778ca8ce34ea1b5 Mon Sep 17 00:00:00 2001 From: Brice Rising Date: Mon, 10 Dec 2018 15:02:17 -0500 Subject: [PATCH] Run gofmt -s on fs_test Neeted to run formatting on fs_test.go Signed-off-by: Brice Rising (cherry picked from commit c292ba5c8ff4748ee78fbd21af441a173e28aab2) --- 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 a2f0b9fbc..8652cfec7 100644 --- a/pkg/fsutil/fs_test.go +++ b/pkg/fsutil/fs_test.go @@ -11,12 +11,12 @@ import ( "os/user" "path/filepath" "runtime" - "testing" "sync" + "testing" ) var ( - mu sync.Mutex + mu sync.Mutex ) func TestRenameWithFallback(t *testing.T) { @@ -394,7 +394,7 @@ func TestCopyFileSymlink(t *testing.T) { var tempdir, err = ioutil.TempDir("", "gotest") if err != nil { - t.Fatalf("failed to create directory: %s", err); + t.Fatalf("failed to create directory: %s", err) } defer cleanUpDir(tempdir)