We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c533c09 commit 5d1262dCopy full SHA for 5d1262d
hamcrest/src/main/java/org/hamcrest/collection/IsIterableContainingParallelRuns.java
@@ -143,7 +143,7 @@ public static <E> Matcher<Iterable<E>> containsParallelRunsOf(
143
public static <E> Matcher<Iterable<E>> containsParallelRunsOf(
144
final int numRuns, final Matcher<? super E>... matchers
145
) {
146
- return containsParallelRunsOf(numRuns, asList(matchers));
+ return containsParallelRunsOf(numRuns, List.<Matcher<? super E>>of(matchers));
147
}
148
149
0 commit comments