Skip to content

Commit

Permalink
[JBPM-10156] Test failures after changing log with persist (CK) (#2264)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmunozfe authored Feb 6, 2023
1 parent c4af4dd commit 7e5cbb8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void testNotUniqueSimpleKey() {
Assertions.fail("Not unique correlation key used. Exception should have been thrown.");
} catch (RuntimeException ex) {
ex.printStackTrace();
Assertions.assertThat(ex.getMessage()).contains("already exists");
Assertions.assertThat(ex.getMessage()).contains("failed to persist");
}
}

Expand All @@ -106,7 +106,7 @@ public void testNotUniqueMultiValuedKey() {
Assertions.fail("Not unique correlation key used. Exception should have been thrown.");
} catch (RuntimeException ex) {
ex.printStackTrace();
Assertions.assertThat(ex.getMessage()).contains("already exists");
Assertions.assertThat(ex.getMessage()).contains("failed to persist");
}
}

Expand Down

0 comments on commit 7e5cbb8

Please sign in to comment.