Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public static Matcher<Uri> hasParamWithValue(
checkNotNull(paramName);
checkNotNull(paramVal);
final Matcher<QueryParamEntry> qpe = queryParamEntry(paramName, paramVal);
final Matcher<Iterable<? extends QueryParamEntry>> matcherImpl = hasItem(qpe);
final Matcher<Iterable<? super QueryParamEntry>> matcherImpl = hasItem(qpe);

return new TypeSafeMatcher<Uri>() {

Expand All @@ -207,7 +207,7 @@ public void describeTo(Description description) {

private static Matcher<QueryParamEntry> queryParamEntry(
final Matcher<String> paramName, final Matcher<String> paramVal) {
final Matcher<Iterable<? extends String>> valMatcher = hasItem(paramVal);
final Matcher<Iterable<? super String>> valMatcher = hasItem(paramVal);

return new TypeSafeMatcher<QueryParamEntry>(QueryParamEntry.class) {

Expand Down
Loading