Skip to content

Commit 3de7789

Browse files
committed
Update all dependencies
1 parent 7d45fa3 commit 3de7789

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

gradle.lockfile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# This file is expected to be part of source control.
44
jakarta.validation:jakarta.validation-api:3.1.1=testCompileClasspath,testRuntimeClasspath
55
net.bytebuddy:byte-buddy-agent:1.17.5=testCompileClasspath,testRuntimeClasspath
6-
net.bytebuddy:byte-buddy:1.17.5=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
6+
net.bytebuddy:byte-buddy:1.17.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
77
net.sf.jopt-simple:jopt-simple:5.0.4=testCompileClasspath,testRuntimeClasspath
8-
nl.jqno.equalsverifier:equalsverifier:4.0=testCompileClasspath,testRuntimeClasspath
9-
org.apache.commons:commons-lang3:3.17.0=testCompileClasspath,testRuntimeClasspath
8+
nl.jqno.equalsverifier:equalsverifier:4.0.7=testCompileClasspath,testRuntimeClasspath
9+
org.apache.commons:commons-lang3:3.18.0=testCompileClasspath,testRuntimeClasspath
1010
org.apache.commons:commons-math3:3.6.1=testCompileClasspath,testRuntimeClasspath
1111
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
1212
org.assertj:assertj-core:3.27.3=testCompileClasspath,testRuntimeClasspath
@@ -16,13 +16,13 @@ org.jacoco:org.jacoco.core:0.8.13=jacocoAnt
1616
org.jacoco:org.jacoco.report:0.8.13=jacocoAnt
1717
org.javassist:javassist:3.30.2-GA=testCompileClasspath,testRuntimeClasspath
1818
org.jetbrains:annotations:26.0.2=compileClasspath,testCompileClasspath
19-
org.junit.jupiter:junit-jupiter-api:5.12.2=testCompileClasspath,testRuntimeClasspath
20-
org.junit.jupiter:junit-jupiter-engine:5.12.2=testRuntimeClasspath
21-
org.junit.jupiter:junit-jupiter-params:5.12.2=testCompileClasspath,testRuntimeClasspath
22-
org.junit.platform:junit-platform-commons:1.12.2=testCompileClasspath,testRuntimeClasspath
23-
org.junit.platform:junit-platform-engine:1.12.2=testRuntimeClasspath
24-
org.junit.platform:junit-platform-launcher:1.12.2=testRuntimeClasspath
25-
org.junit:junit-bom:5.12.2=testCompileClasspath,testRuntimeClasspath
19+
org.junit.jupiter:junit-jupiter-api:5.13.4=testCompileClasspath,testRuntimeClasspath
20+
org.junit.jupiter:junit-jupiter-engine:5.13.4=testRuntimeClasspath
21+
org.junit.jupiter:junit-jupiter-params:5.13.4=testCompileClasspath,testRuntimeClasspath
22+
org.junit.platform:junit-platform-commons:1.13.4=testCompileClasspath,testRuntimeClasspath
23+
org.junit.platform:junit-platform-engine:1.13.4=testRuntimeClasspath
24+
org.junit.platform:junit-platform-launcher:1.13.4=testRuntimeClasspath
25+
org.junit:junit-bom:5.13.4=testCompileClasspath,testRuntimeClasspath
2626
org.mockito:mockito-core:5.18.0=testCompileClasspath,testRuntimeClasspath
2727
org.objenesis:objenesis:3.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2828
org.openjdk.jmh:jmh-core:1.37=testCompileClasspath,testRuntimeClasspath

src/test/java/de/cronn/reflection/util/immutable/ImmutableProxyTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ void testImmutableProxyOnMutableNumber() throws Exception {
476476

477477
MutableLong immutableProxy = ImmutableProxy.create(mutableLong);
478478

479-
assertThat(immutableProxy.getValue()).isEqualTo(25);
479+
assertThat(immutableProxy.get()).isEqualTo(25L);
480480

481481
assertThatExceptionOfType(UnsupportedOperationException.class)
482482
.isThrownBy(() -> immutableProxy.add(5))

0 commit comments

Comments
 (0)