Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 415243

Summary: Git tests workspaces and projects all named getMethodName
Product: [ECD] Orion Reporter: Anthony Hunter <ahunter.eclipse>
Component: GitAssignee: Anthony Hunter <ahunter.eclipse>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 4.0   
Target Milestone: 4.0 M2   
Hardware: PC   
OS: Linux   
Whiteboard:

Description Anthony Hunter CLA 2013-08-16 12:19:03 EDT
The abstract GitTest class has a method getMethodName() that is used to get the name for the workspace and project during the tests.

Likely we wanted the method name of the test that is being run but instead we are returning the name getMethodName

The fix is to change:
stackTraceElement[2].getMethodName

to 

stackTraceElement[3].getMethodName

This problem does not break anything but looks odd when watching the tests run.