fix project, correct formatting issue

master
Greg Gauthier 2 years ago
parent 6b03f23916
commit f8c371d0a2
  1. 1
      .gitignore
  2. 2
      go-testing.go

1
.gitignore vendored

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

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

Loading…
Cancel
Save