File tree 1 file changed +5
-5
lines changed
testng-core/src/main/java/org/testng/internal/invokers 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -115,20 +115,20 @@ && doesTaskHavePreRequisites()
115
115
return ;
116
116
}
117
117
118
- for (IMethodInstance testMethdInstance : m_methodInstances ) {
119
- ITestNGMethod testMethod = testMethdInstance .getMethod ();
118
+ for (IMethodInstance testMethodInstance : m_methodInstances ) {
119
+ ITestNGMethod testMethod = testMethodInstance .getMethod ();
120
120
if (canInvokeBeforeClassMethods ()) {
121
121
synchronized (testMethod .getInstance ()) {
122
- invokeBeforeClassMethods (testMethod .getTestClass (), testMethdInstance );
122
+ invokeBeforeClassMethods (testMethod .getTestClass (), testMethodInstance );
123
123
}
124
124
}
125
125
126
126
// Invoke test method
127
127
try {
128
- invokeTestMethods (testMethod , testMethdInstance .getInstance ());
128
+ invokeTestMethods (testMethod , testMethodInstance .getInstance ());
129
129
} finally {
130
130
synchronized (testMethod .getInstance ()) {
131
- invokeAfterClassMethods (testMethod .getTestClass (), testMethdInstance );
131
+ invokeAfterClassMethods (testMethod .getTestClass (), testMethodInstance );
132
132
}
133
133
}
134
134
}
You can’t perform that action at this time.
0 commit comments