From a0bc7426dbd5d1f1d218c0b2eb78dc278eb528f9 Mon Sep 17 00:00:00 2001 From: ia Date: Sat, 16 Jun 2018 16:01:44 +0200 Subject: [PATCH] all: gofmt Run standard gofmt command on project root. - go version go1.10.3 darwin/amd64 --- assert.go | 5 +++-- example/point_test.go | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/assert.go b/assert.go index 7409f98..816508c 100644 --- a/assert.go +++ b/assert.go @@ -1,12 +1,13 @@ package assert + // Testing helpers for doozer. import ( + "fmt" "github.com/kr/pretty" "reflect" - "testing" "runtime" - "fmt" + "testing" ) func assert(t *testing.T, result bool, f func(), cd int) { diff --git a/example/point_test.go b/example/point_test.go index 34e791a..75af63a 100644 --- a/example/point_test.go +++ b/example/point_test.go @@ -1,8 +1,8 @@ package point import ( - "testing" "assert" + "testing" ) func TestAsserts(t *testing.T) {