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) {