Skip to content

Commit

Permalink
#145 - Fix displaying of ignore reasons for test methods in allure re…
Browse files Browse the repository at this point in the history
…port
  • Loading branch information
Marcel Pfotenhauer committed Oct 9, 2020
1 parent abb37ce commit 903f384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/xceptance/neodymium/NeodymiumRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ private Description createFlatTestDescription(List<FrameworkMethod> methods)
protected Description describeChild(FrameworkMethod method)
{
return childDescriptions.computeIfAbsent(method, (m) -> {
return Description.createTestDescription(getTestClass().getJavaClass(), m.getName());
return Description.createTestDescription(getTestClass().getJavaClass(), m.getName(), m.getAnnotations());
});
}

Expand Down

0 comments on commit 903f384

Please sign in to comment.