|
94 | 94 | */ |
95 | 95 | public class MicrocksContainersEnsembleTest { |
96 | 96 |
|
97 | | - private static final String IMAGE = "quay.io/microcks/microcks-uber:1.11.0"; |
| 97 | + private static final String IMAGE = "quay.io/microcks/microcks-uber:1.12.0"; |
98 | 98 | private static final String ASYNC_IMAGE = "quay.io/microcks/microcks-uber-async-minion:nightly-native"; |
99 | 99 | private static final String NATIVE_IMAGE = "quay.io/microcks/microcks-uber:nightly-native"; |
100 | 100 |
|
@@ -679,7 +679,7 @@ private void testMicrocksAsyncContractTestingFunctionality(MicrocksContainersEns |
679 | 679 | // Ensure we had at least grab one message. |
680 | 680 | assertFalse(testResult.getTestCaseResults().get(0).getTestStepResults().isEmpty()); |
681 | 681 | TestStepResult testStepResult = testResult.getTestCaseResults().get(0).getTestStepResults().get(0); |
682 | | - assertTrue(testStepResult.getMessage().contains("object has missing required properties ([\"status\"]")); |
| 682 | + assertTrue(testStepResult.getMessage().contains("required property 'status' not found")); |
683 | 683 |
|
684 | 684 | // Switch endpoint to the correct implementation. |
685 | 685 | // Other way of doing things via builder and fluent api. |
@@ -766,7 +766,7 @@ private void testMicrocksAsyncKafkaContractTestingFunctionality(MicrocksContaine |
766 | 766 | // Ensure we had at least grab one message. |
767 | 767 | assertFalse(testResult.getTestCaseResults().get(0).getTestStepResults().isEmpty()); |
768 | 768 | TestStepResult testStepResult = testResult.getTestCaseResults().get(0).getTestStepResults().get(0); |
769 | | - assertTrue(testStepResult.getMessage().contains("object has missing required properties ([\"status\"]")); |
| 769 | + assertTrue(testStepResult.getMessage().contains("required property 'status' not found")); |
770 | 770 |
|
771 | 771 | // Retrieve event messages for the failing test case. |
772 | 772 | List<UnidirectionalEvent> events = ensemble.getMicrocksContainer().getEventMessagesForTestCase(testResult, |
@@ -891,7 +891,7 @@ private void testMicrocksAsyncAmazonSQSContractTestingFunctionality(MicrocksCont |
891 | 891 | // Ensure we had at least grab one message. |
892 | 892 | assertFalse(testResult.getTestCaseResults().get(0).getTestStepResults().isEmpty()); |
893 | 893 | TestStepResult testStepResult = testResult.getTestCaseResults().get(0).getTestStepResults().get(0); |
894 | | - assertTrue(testStepResult.getMessage().contains("object has missing required properties ([\"status\"]")); |
| 894 | + assertTrue(testStepResult.getMessage().contains("required property 'status' not found")); |
895 | 895 |
|
896 | 896 |
|
897 | 897 | // Switch endpoint to the correct implementation. |
|
0 commit comments