-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Use for:range in go test files #15727
Conversation
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
Tests
Documentation
New flags
If a workflow is added or modified:
Backward compatibility
|
@dmuli welcome and thank you for the contribution. This project requires commits to be signed off. You can fix the commit in this PR by doing |
My tests cases on local are failing with the following error
I am trying to fix these. |
This PR is being marked as stale because it has been open for 30 days with no activity. To rectify, you may do any of the following:
If no action is taken within 7 days, this PR will be closed. |
This PR was closed because it has been stale for 7 days with no activity. |
Description
Go 1.22 introduced the ability to range over integers in a more concise manner, e.g.
for i := 0; i < n; i++
becomes
for i := range n
Did the change for all go test files.
My first commit on this repo.
Related Issue(s)
#15193
Checklist
Deployment Notes
N/A