Skip to content

Commit

Permalink
Workaround source incompatible change
Browse files Browse the repository at this point in the history
  • Loading branch information
ppkarwasz committed Jan 6, 2025
1 parent d2b799d commit 98a650a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ThrowableConsumingMessageFactoryTest {
private static final Object P8 = new Object();
private static final Object P9 = new Object();
private static final Object P10 = new Object();
private static final Object THROWABLE = new Throwable();
private static final Throwable THROWABLE = new Throwable();

@Test
void should_not_consume_last_object_parameter() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ThrowableConsumingMessageFactoryTest {
private static final Object P8 = new Object();
private static final Object P9 = new Object();
private static final Object P10 = new Object();
private static final Object THROWABLE = new Throwable();
private static final Throwable THROWABLE = new Throwable();

@Test
void should_not_consume_last_object_parameter() {
Expand Down

0 comments on commit 98a650a

Please sign in to comment.