diff --git a/src/main/java/io/zucchini/circuitsimtester/launcher/TestMethodResult.java b/src/main/java/io/zucchini/circuitsimtester/launcher/TestMethodResult.java index 2d1775e..5f39af7 100644 --- a/src/main/java/io/zucchini/circuitsimtester/launcher/TestMethodResult.java +++ b/src/main/java/io/zucchini/circuitsimtester/launcher/TestMethodResult.java @@ -23,9 +23,6 @@ public TestMethodResult(TestIdentifier id, @Override public int compareTo(TestMethodResult other) { - int methodNameCompared = source.getMethodName().compareTo(other.source.getMethodName()); - - return (methodNameCompared == 0)? id.getDisplayName().compareTo(other.id.getDisplayName()) - : methodNameCompared; + return id.getDisplayName().compareTo(other.id.getDisplayName()); } }