File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
firebase-components/src/test/java/com/google/firebase/components Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 16
16
17
17
import static com .google .common .truth .Truth .assertThat ;
18
18
import static com .google .firebase .components .Qualified .qualified ;
19
+ import static com .google .firebase .components .Qualified .unqualified ;
19
20
import static org .junit .Assert .assertThrows ;
20
21
import static org .junit .Assert .fail ;
21
22
@@ -646,8 +647,8 @@ public void container_withComponentProcessor_shouldDelegateToItForEachComponentR
646
647
runtime .getAllComponentsForTest ().stream ()
647
648
.filter (
648
649
c ->
649
- (c .getProvidedInterfaces ().contains (ComponentOne .class )
650
- || c .getProvidedInterfaces ().contains (ComponentTwo .class )))
650
+ (c .getProvidedInterfaces ().contains (unqualified ( ComponentOne .class ) )
651
+ || c .getProvidedInterfaces ().contains (unqualified ( ComponentTwo .class ) )))
651
652
.allMatch (c -> c .getFactory () == replacedFactory ))
652
653
.isTrue ();
653
654
}
You can’t perform that action at this time.
0 commit comments