File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
espresso/intents/java/androidx/test/espresso/intent/matcher Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ public static Matcher<Uri> hasParamWithValue(
182
182
checkNotNull (paramName );
183
183
checkNotNull (paramVal );
184
184
final Matcher <QueryParamEntry > qpe = queryParamEntry (paramName , paramVal );
185
- final Matcher <Iterable <? extends QueryParamEntry >> matcherImpl = hasItem (qpe );
185
+ final Matcher <Iterable <? super QueryParamEntry >> matcherImpl = hasItem (qpe );
186
186
187
187
return new TypeSafeMatcher <Uri >() {
188
188
@@ -207,7 +207,7 @@ public void describeTo(Description description) {
207
207
208
208
private static Matcher <QueryParamEntry > queryParamEntry (
209
209
final Matcher <String > paramName , final Matcher <String > paramVal ) {
210
- final Matcher <Iterable <? extends String >> valMatcher = hasItem (paramVal );
210
+ final Matcher <Iterable <? super String >> valMatcher = hasItem (paramVal );
211
211
212
212
return new TypeSafeMatcher <QueryParamEntry >(QueryParamEntry .class ) {
213
213
You can’t perform that action at this time.
0 commit comments