diff --git a/optaplanner-quarkus-integration/optaplanner-quarkus/devui-integration-test/src/test/java/org/optaplanner/quarkus/it/devui/OptaPlannerDevUITest.java b/optaplanner-quarkus-integration/optaplanner-quarkus/devui-integration-test/src/test/java/org/optaplanner/quarkus/it/devui/OptaPlannerDevUITest.java index 674295e43e2..3fe650cab7e 100644 --- a/optaplanner-quarkus-integration/optaplanner-quarkus/devui-integration-test/src/test/java/org/optaplanner/quarkus/it/devui/OptaPlannerDevUITest.java +++ b/optaplanner-quarkus-integration/optaplanner-quarkus/devui-integration-test/src/test/java/org/optaplanner/quarkus/it/devui/OptaPlannerDevUITest.java @@ -86,7 +86,7 @@ void testModelPage() throws Exception { @Test void testConstraintsPage() throws Exception { JsonNode constraintsResponse = super.executeJsonRPCMethod("getConstraints"); - assertThat(constraintsResponse).containsExactly( + assertThat(constraintsResponse).containsExactlyInAnyOrder( new TextNode(TestdataStringLengthShadowSolution.class.getPackage() .getName() + "/Don't assign 2 entities the same value."), new TextNode(TestdataStringLengthShadowSolution.class.getPackage().getName() + "/Maximize value length"));