Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class TestNGToAssertJRulesTest implements RefasterRuleCollectionTestCase {
public ImmutableSet<?> elidedTypesAndStaticImports() {
return ImmutableSet.of(
(Runnable) () -> assertEquals(new byte[0], null),
(Runnable) () -> assertEqualsNoOrder(null, null),
(Runnable) () -> assertEqualsNoOrder((Object[]) null, null),
(Runnable) () -> assertFalse(true),
(Runnable) () -> assertNotEquals(new byte[0], null),
(Runnable) () -> assertNotNull(null),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ final class TestNGToAssertJRulesTest implements RefasterRuleCollectionTestCase {
public ImmutableSet<?> elidedTypesAndStaticImports() {
return ImmutableSet.of(
(Runnable) () -> assertEquals(new byte[0], null),
(Runnable) () -> assertEqualsNoOrder(null, null),
(Runnable) () -> assertEqualsNoOrder((Object[]) null, null),
(Runnable) () -> assertFalse(true),
(Runnable) () -> assertNotEquals(new byte[0], null),
(Runnable) () -> assertNotNull(null),
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.4.0</version>
<version>7.7.1</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit a5b5f43

Please sign in to comment.