Skip to content

Commit

Permalink
assertj-core 3.19.0 (vavr-io#2630)
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis authored Feb 6, 2021
1 parent ef1d30d commit 072fc09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'signing'

ext.ammoniteScalaVersion = '2.13' // Currently, generator/Generator.sc does not build with Scala 2.13
ext.ammoniteVersion = '2.0.4'
ext.assertjVersion = '3.15.0'
ext.assertjVersion = '3.19.0'
ext.junitVersion = '4.13'

repositories {
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/io/vavr/AbstractValueTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,9 @@ public void shouldConvertToJavaArray() {
final Value<Integer> value = of(1, 2, 3);
final Object[] ints = value.toJavaArray();
if (value.isSingleValued()) {
assertThat(ints).isEqualTo(new int[] { 1 });
assertThat(ints).isEqualTo(new Object[] { 1 });
} else {
assertThat(ints).isEqualTo(new int[] { 1, 2, 3 });
assertThat(ints).isEqualTo(new Object[] { 1, 2, 3 });
}
}

Expand Down

0 comments on commit 072fc09

Please sign in to comment.