Skip to content

Commit

Permalink
Bump org.assertj:assertj-core from 3.24.2 to 3.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jlink committed Jan 2, 2024
1 parent 41fe32f commit 03d6c4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ext {
apiGuardianVersion = '1.1.2'
opentest4jVersion = '1.3.0'
archunitVersion = '1.2.1'
assertJVersion = '3.24.2'
assertJVersion = '3.25.0'
mockitoVersion = '4.11.0'
systemLambdaVersion = '1.2.1'
kotlinVersion = '1.8.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void countDoubleValues() {
void callingCollectWithNoValueFails() {
StatisticsCollectorImpl collector = new StatisticsCollectorImpl("a label");

assertThatThrownBy(collector::collect).isInstanceOf(IllegalArgumentException.class);
assertThatThrownBy(() -> collector.collect()).isInstanceOf(IllegalArgumentException.class);
}

@Example
Expand Down

0 comments on commit 03d6c4f

Please sign in to comment.