Skip to content

Commit e6fac6d

Browse files
committed
Use org.hamcrest.Matchers.is(..)
Instead of CoreMatchers.is(..)
1 parent fcdecda commit e6fac6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/uk/co/probablyfine/matchers/Java8Matchers.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
package uk.co.probablyfine.matchers;
22

3-
import uk.co.probablyfine.matchers.function.DescribableFunction;
4-
import uk.co.probablyfine.matchers.function.DescribablePredicate;
53
import org.hamcrest.Description;
64
import org.hamcrest.Matcher;
75
import org.hamcrest.TypeSafeDiagnosingMatcher;
6+
import uk.co.probablyfine.matchers.function.DescribableFunction;
7+
import uk.co.probablyfine.matchers.function.DescribablePredicate;
88

99
import java.util.function.Function;
1010

11+
import static org.hamcrest.Matchers.is;
1112
import static uk.co.probablyfine.matchers.internal.DescriptionUtils.withPrefixedArticle;
12-
import static org.hamcrest.CoreMatchers.is;
1313

1414
public final class Java8Matchers {
1515

0 commit comments

Comments
 (0)