8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm not go dev. But got issue with installing it on my machine. Installation package contain go test ./.... Which fails with this message:
go test ./...
--- FAIL: TestParseRedirAddr (0.01s) --- FAIL: TestParseRedirAddr/domain_without_port (0.00s) state_test.go:52: expected 23.215.0.136 got 96.7.128.198 --- FAIL: TestParseRedirAddr/domain_with_port (0.00s) state_test.go:72: expected 23.215.0.136 got 23.215.0.138
I found out that test relay on ip resolving of example.com which is not consistent (each ping command resolves to different ipv4) example.com ips
example.com
and by replacing example.com with github.com or my personal domain in internal/server/state_test.go solved the issue
github.com
internal/server/state_test.go
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm not go dev. But got issue with installing it on my machine. Installation package contain
go test ./...
. Which fails with this message:I found out that test relay on ip resolving of
example.com
which is not consistent (each ping command resolves to different ipv4) example.com ipsand by replacing
example.com
withgithub.com
or my personal domain ininternal/server/state_test.go
solved the issueThe text was updated successfully, but these errors were encountered: