Skip to content

Commit

Permalink
Fix test to work with simcloud. (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
cezarfx authored May 22, 2024
1 parent 9660e3f commit 17e6663
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -696,8 +696,8 @@ public void testPrepStmtCacheRemove() throws ClassNotFoundException {
Assert.assertEquals(0, customerList.size());
Assert.fail("Should throw a 'Table not found' exception");
} catch (Exception e) {
Assert.assertEquals("Table not found: customer",
e.getCause().getMessage());
Assert.assertTrue(
e.getCause().getMessage().contains("Table not found"));
}

NosqlEntityInformation<Customer, ?> customerEntInfo =
Expand Down

0 comments on commit 17e6663

Please sign in to comment.