Skip to content

Commit 718b702

Browse files
committed
fix
1 parent f6c4f31 commit 718b702

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/MultipleContextTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public void testFindWithStage(TestContext testContext) throws Exception {
8585
testContext.assertNotNull( e );
8686
testContext.assertEquals( CompletionException.class, e.getClass() );
8787
testContext.assertEquals( IllegalStateException.class, e.getCause().getClass() );
88-
testContext.assertTrue( e.getMessage().contains( ERROR_MESSAGE ) );
88+
testContext.assertEquals( ERROR_MESSAGE, e.getMessage() );
8989
return null;
9090
} ) )
9191
);

0 commit comments

Comments
 (0)