You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go 1.19 added a new field called OmitHost into the url.URL type - golang/go#46059
The snapshots on disk don't include the OmitHost field, because they were generated with Go 1.18, so if you run the tests on Go >= 1.19, the tests will fail due to the OmitHost field appearing.
If I update the snapshots, then it will fail for everyone using Go < 1.19.
Since the OmitHost field isn't important for this use case, maybe the comparison could be updated to ignore the field.
basically, go 1.19 has a new fmt that breaks a bunch of our ascii art comments, so we haven't been upgrading. being 2 minor versions behind is harder to swallow though so it's a TODO to convert all our ascii art to use block comments to preserve. we'll use this issue to track, thank you.
Go 1.19 added a new field called
OmitHost
into theurl.URL
type - golang/go#46059The snapshots on disk don't include the
OmitHost
field, because they were generated with Go 1.18, so if you run the tests on Go >= 1.19, the tests will fail due to theOmitHost
field appearing.If I update the snapshots, then it will fail for everyone using Go < 1.19.
Since the
OmitHost
field isn't important for this use case, maybe the comparison could be updated to ignore the field.The text was updated successfully, but these errors were encountered: