Skip to content

Commit

Permalink
Removed unused private method
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Reiche committed Nov 3, 2021
1 parent 297a974 commit 44a074b
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,16 +215,6 @@ private AzureTest getAnnotation(MethodEndEvent event) {
}
}

private int getPriorityByFailureCorridor(Class failureCorridorClass) {
if (failureCorridorClass == FailureCorridor.Mid.class) {
return 2;
} else if (failureCorridorClass == FailureCorridor.Low.class) {
return 3;
} else {
return 1;
}
}

private FailureType getFailureType(MethodEndEvent event) {
final Method method = event.getTestResult().getMethod().getConstructorOrMethod().getMethod();
if (method.isAnnotationPresent(Fails.class)) {
Expand Down

0 comments on commit 44a074b

Please sign in to comment.