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(
182182 checkNotNull (paramName );
183183 checkNotNull (paramVal );
184184 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 );
186186
187187 return new TypeSafeMatcher <Uri >() {
188188
@@ -207,7 +207,7 @@ public void describeTo(Description description) {
207207
208208 private static Matcher <QueryParamEntry > queryParamEntry (
209209 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 );
211211
212212 return new TypeSafeMatcher <QueryParamEntry >(QueryParamEntry .class ) {
213213
You can’t perform that action at this time.
0 commit comments