diff --git a/src-java/testing/functional-tests/src/test/groovy/org/openkilda/functionaltests/spec/flows/ProtectedPathSpec.groovy b/src-java/testing/functional-tests/src/test/groovy/org/openkilda/functionaltests/spec/flows/ProtectedPathSpec.groovy index 7a298c9bed3..cea711d5fd1 100644 --- a/src-java/testing/functional-tests/src/test/groovy/org/openkilda/functionaltests/spec/flows/ProtectedPathSpec.groovy +++ b/src-java/testing/functional-tests/src/test/groovy/org/openkilda/functionaltests/spec/flows/ProtectedPathSpec.groovy @@ -430,14 +430,7 @@ Failed to find path with requested bandwidth=$flow.maximumBandwidth/ @Tags(ISL_RECOVER_ON_FAIL) def "Flow swaps to protected path when main path gets broken, becomes DEGRADED if protected path is unable to reroute(no path)"() { given: "Two switches with 2 diverse paths at least" - //def switchPair = switchPairs.all().withAtLeastNNonOverlappingPaths(2).random() - //https://github.com/telstra/open-kilda/issues/5608 - def switchesWhere5608IsReproducible = topology.activeSwitches.findAll {it.dpId.toString().endsWith("08") - ||it.dpId.toString().endsWith("09")} - def switchPair = switchPairs.all() - .excludeSwitches(switchesWhere5608IsReproducible) - .withAtLeastNNonOverlappingPaths(2).random() - + def switchPair = switchPairs.all().withAtLeastNNonOverlappingPaths(2).random() when: "Create flow with protected path" def flow = flowHelperV2.randomFlow(switchPair).tap { allocateProtectedPath = true }