You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Test groups are global, not just for single test. This means that multiple
test classes may be "in progress" at the same time, which leads to issues
in at least one implementation which has global state.
Instead of test groups and `dependsOnGroups`, this commit uses simple
`dependsOnMethods`, which is local to the test class.
Copy file name to clipboardExpand all lines: tck/src/main/java/org/eclipse/microprofile/fault/tolerance/tck/telemetryMetrics/BulkheadTelemetryTest.java
Copy file name to clipboardExpand all lines: tck/src/main/java/org/eclipse/microprofile/fault/tolerance/tck/telemetryMetrics/CircuitBreakerTelemetryTest.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -117,7 +117,7 @@ public void closeTheCircuit() throws Exception {
Copy file name to clipboardExpand all lines: tck/src/main/java/org/eclipse/microprofile/fault/tolerance/tck/telemetryMetrics/FallbackTelemetryTest.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ public static WebArchive deploy() {
0 commit comments