-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
🐛 (go/v4): fix indentation of imports in test files #4623
🐛 (go/v4): fix indentation of imports in test files #4623
Conversation
Hi @kersten. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to run make generate
so that the change made in the template/bollerplate will be reflect in all samples and docs.
Also, since it will endup in a change available for end users we cannot use the 🌱 in this case we can use for example : 🐛 and we should add the plugin impacted by. I hope that you do not mind I will update the title, because we use it for our release notes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I ran make generate
and re run it again, there are no such changes in the samples and docs 🧐, also all my workflows are succeeding. Did I miss something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But wait, just found some other places. I will recheck
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed the other places and ran 'make generate' again
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @kersten,
Just a small request—could you please squash the commits?
We follow a policy of one PR → one commit → one need/bug/enhancement to maintain a clean and structured Git history. This makes it easier to revert changes if necessary and helps avoid potential conflicts.
Thanks! 🚀
correct indentation for imports in test files This commit addresses the inconsistent indentation in several test files. The imports are now properly aligned using tabs instead of spaces to maintain consistency across the codebase. This change does not affect functionality but improves code readability.
742aac4
to
31e29b6
Compare
Sure, I missed the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/ok-to-test
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: camilamacedo86, kersten The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Correct indentation for imported packages in the e2e test suite to maintain consistent code formatting.