-
Notifications
You must be signed in to change notification settings - Fork 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
Fix typos #2772
Fix typos #2772
Conversation
&& currentThreadId != threadIdToRunOn) { | ||
completed = false; | ||
return; | ||
} | ||
|
||
for (IMethodInstance testMthdInst : m_methodInstances) { | ||
ITestNGMethod testMethod = testMthdInst.getMethod(); | ||
for (IMethodInstance testMethdInstance : m_methodInstances) { |
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 think you can add the last missing 'o' 😉
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.
Oops :)
Fixed.
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.
The build is failing because of formatting issues.
Can you please do the following ?
./gradlew autostyleApply
(This will apply code formatting)- Commit the changes.
- Run
./gradlew clean check
(This will ensure that the code formatting is checked and all the tests are run) - Push the changes after the tests have passed so that the PR gets updated.
@asolntsev - Thanks for the PR. This now is merged. Look forward to more contributions from you |
@krmahadevan I see the project doesn't compile on "17, Adopt OpenJ9":
Apparently, this JVM doesn't have method |
Or we would need to find a way to ensure that this test doesn't run on this JVM. We need to take a closer look on this. Thanks for highlighting this. |
just fixes some typos in TesTNG code/tests/comments.