We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6c4f31 commit 718b702Copy full SHA for 718b702
hibernate-reactive-core/src/test/java/org/hibernate/reactive/MultipleContextTest.java
@@ -85,7 +85,7 @@ public void testFindWithStage(TestContext testContext) throws Exception {
85
testContext.assertNotNull( e );
86
testContext.assertEquals( CompletionException.class, e.getClass() );
87
testContext.assertEquals( IllegalStateException.class, e.getCause().getClass() );
88
- testContext.assertTrue( e.getMessage().contains( ERROR_MESSAGE ) );
+ testContext.assertEquals( ERROR_MESSAGE, e.getMessage() );
89
return null;
90
} ) )
91
);
0 commit comments