Skip to content

Commit e99f1cb

Browse files
Bump org.assertj:assertj-core from 3.26.3 to 3.27.2 in /log4j-parent (#3365)
* Bump org.assertj:assertj-core from 3.26.3 to 3.27.2 in /log4j-parent Bumps [org.assertj:assertj-core](https://github.com/assertj/assertj) from 3.26.3 to 3.27.2. - [Release notes](https://github.com/assertj/assertj/releases) - [Commits](assertj/assertj@assertj-build-3.26.3...assertj-build-3.27.2) --- updated-dependencies: - dependency-name: org.assertj:assertj-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Workaround source incompatible change --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Piotr P. Karwasz <[email protected]>
1 parent b4892e8 commit e99f1cb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

log4j-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<activemq.version>6.1.4</activemq.version>
6464
<angus-activation.version>2.0.2</angus-activation.version>
6565
<angus-mail.version>2.0.3</angus-mail.version>
66-
<assertj.version>3.26.3</assertj.version>
66+
<assertj.version>3.27.2</assertj.version>
6767
<awaitility.version>4.2.2</awaitility.version>
6868
<bsh.version>2.0b6</bsh.version>
6969
<cassandra.version>3.11.17</cassandra.version>

log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/message/ThrowableConsumingMessageFactoryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ThrowableConsumingMessageFactoryTest {
3636
private static final Object P8 = new Object();
3737
private static final Object P9 = new Object();
3838
private static final Object P10 = new Object();
39-
private static final Object THROWABLE = new Throwable();
39+
private static final Throwable THROWABLE = new Throwable();
4040

4141
@Test
4242
void should_not_consume_last_object_parameter() {

log4j-slf4j2-impl/src/test/java/org/apache/logging/slf4j/message/ThrowableConsumingMessageFactoryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ThrowableConsumingMessageFactoryTest {
3636
private static final Object P8 = new Object();
3737
private static final Object P9 = new Object();
3838
private static final Object P10 = new Object();
39-
private static final Object THROWABLE = new Throwable();
39+
private static final Throwable THROWABLE = new Throwable();
4040

4141
@Test
4242
void should_not_consume_last_object_parameter() {

0 commit comments

Comments
 (0)