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
This issue tracks test failures that may occur after applying go fix ./... from Go 1.26.0, which converts interface{} to any throughout the codebase. The changes in PR #7018 are syntactic but may expose test issues that need investigation.
Summary
This issue tracks test failures that may occur after applying
go fix ./...from Go 1.26.0, which convertsinterface{}toanythroughout the codebase. The changes in PR #7018 are syntactic but may expose test issues that need investigation.Steps to Reproduce
golangci-lint run --fix ./...#7018 branch:dwisiswant0/chore/go-fixmake testto execute unit testscd integration_tests && bash run.sh ubuntu-latestcd cmd/functional-test && bash run.shcd examples/simple && go run .Expected
All tests should pass after the
go fix ./...changes:make test)Actual
Some tests may be failing after the interface{} to any conversion. This needs investigation to determine:
Evidence
golangci-lint run --fix ./...#7018: chore:golangci-lint run --fix ./...#7018go fix ./...from Go 1.26.0 (interface{} → any conversion)Suggested Fix
golangci-lint run --fix ./...#7018 with test fixes or create follow-up PRs for complex issues