Skip to content

Commit

Permalink
Resolve ambiguity
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan202 committed Jan 19, 2023
1 parent bb183e9 commit 32d6cab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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

0 comments on commit 32d6cab

Please sign in to comment.