From f8c371d0a218d57992d3bd06777f63be5f3411fc Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Wed, 10 Mar 2021 11:08:24 +0000 Subject: [PATCH] fix project, correct formatting issue --- .gitignore | 1 - go-testing.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e1263e5..7353b67 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ .idea/ build/ -pymodule/ vendor/ *.code-workspace *.iml \ No newline at end of file diff --git a/go-testing.go b/go-testing.go index d349ce4..ccda91d 100644 --- a/go-testing.go +++ b/go-testing.go @@ -11,7 +11,7 @@ func TestAbs(t *testing.T) { // TestAbs comment got := math.Abs(-1) if got != 1 { - t.Errorf("Abs(-1) = %d; want 1", got) + t.Errorf("Abs(-1) = %f; want 1", got) } }