Skip to content

Commit

Permalink
Fix test names in test operation results
Browse files Browse the repository at this point in the history
(copied from 597adb2)
  • Loading branch information
mederly committed Oct 10, 2019
1 parent e34881d commit c24b544
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -242,8 +242,8 @@ public void setTaskAndResult(ITestContext ctx, Method testMethod) throws SchemaE
return;
}

String testShortName = testMethod.getName();
String testFullName = testMethod.getDeclaringClass().getName() + "." + testShortName;
String testShortName = testMethod.getDeclaringClass().getSimpleName() + "." + testMethod.getName();
String testFullName = testMethod.getDeclaringClass().getName() + "." + testMethod.getName();
TestUtil.displayTestTitle(testShortName);
Task task = createTask(testFullName);
OperationResult rootResult = task.getResult();
Expand Down

0 comments on commit c24b544

Please sign in to comment.