-
Notifications
You must be signed in to change notification settings - Fork 897
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors with make test #774
Comments
I'm also getting that test failure:
The lines in question: case reflect.Int:
if field.Int() != 0 {
result[prefix] = string(field.Int())
} I would guess that this is wrong (https://golangdocs.com/converting-integer-to-string-in-golang), since I would assume that in this case, the integer should be converted into a string. On the other hand, it is impossible to verify that, since the function |
This is fixed in |
Hi, when I run
make test
some of the tests are failing because of an issue with the PGP key, and if I comment that out I get a different error, for another test.Any idea why this is happening?
The Go version I use is
go version go1.15.5 darwin/amd64
When I configure to skip that test (with
t.Skip
), I get a different error in another test:The text was updated successfully, but these errors were encountered: