File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
hamcrest-unit-test/src/main/java/org/hamcrest/core Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class AllOfTest extends AbstractMatcherTest {
18
18
@ Override
19
19
@ SuppressWarnings ("unchecked" )
20
20
protected Matcher <?> createMatcher () {
21
- return allOf (equalTo ("irrelevant" ));
21
+ return allOf (IsEqual .< Object > equalTo ("irrelevant" ));
22
22
}
23
23
24
24
public void testEvaluatesToTheTheLogicalConjunctionOfTwoOtherMatchers () {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public class AnyOfTest extends AbstractMatcherTest {
15
15
@ Override
16
16
@ SuppressWarnings ("unchecked" )
17
17
protected Matcher <?> createMatcher () {
18
- return anyOf (equalTo ("irrelevant" ));
18
+ return anyOf (IsEqual .< Object > equalTo ("irrelevant" ));
19
19
}
20
20
21
21
public void testEvaluatesToTheTheLogicalDisjunctionOfTwoOtherMatchers () {
You can’t perform that action at this time.
0 commit comments