fix project, correct formatting issue

This commit is contained in:
Greg Gauthier 2021-03-10 11:08:24 +00:00
parent 6b03f23916
commit f8c371d0a2
2 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
.idea/
build/
pymodule/
vendor/
*.code-workspace
*.iml

View File

@ -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)
}
}