From e5da4db3a67efee25354b4a9a2a73d1e8efa8ec8 Mon Sep 17 00:00:00 2001 From: Nicholas Goozeff Date: Wed, 31 Oct 2018 11:18:03 +0100 Subject: [PATCH] go fmt --- third_party/go9p/ufs_windows_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/third_party/go9p/ufs_windows_test.go b/third_party/go9p/ufs_windows_test.go index bb7fb260db..7acfc90798 100644 --- a/third_party/go9p/ufs_windows_test.go +++ b/third_party/go9p/ufs_windows_test.go @@ -6,16 +6,16 @@ import ( "testing" ) -func assert_NotNil(t *testing.T, i interface {}) { - if (i == nil) { - t.Error("Value should not be nil") - } +func assert_NotNil(t *testing.T, i interface{}) { + if i == nil { + t.Error("Value should not be nil") + } } func assert_NotEqual(t *testing.T, lhs uint32, rhs uint32, message string) { - if (lhs == rhs) { - t.Errorf("Value %d should not be %d. %s", lhs, rhs, message) - } + if lhs == rhs { + t.Errorf("Value %d should not be %d. %s", lhs, rhs, message) + } } func TestDir2DirTimestamp(t *testing.T) {