Skip to content

Commit e2e7d81

Browse files
authored
Merge pull request #18 from Nordstrom/pr/expose-conversion-method
Add 'public' access modifier to getTargetFor() method
2 parents ee40e6d + f72e31a commit e2e7d81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/nordstrom/automation/junit/RunReflectiveCall.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ static void fireTestIgnored(Object runner, FrameworkMethod method) {
166166
* @param method {@link FrameworkMethod} object
167167
* @return target test class instance for the specified method
168168
*/
169-
static Object getTargetFor(FrameworkMethod method) {
169+
public static Object getTargetFor(FrameworkMethod method) {
170170
Object target = METHOD_TO_TARGET.get(method);
171171
if (target != null) {
172172
return target;

0 commit comments

Comments
 (0)