Fix broken test

I forgot to update this test when I changed the code in I83b6f4ba6711d371a0ceb485316a61e284e79374.

Fixes: 212753640
Test: atest MediaCoordinatorTest
Signed-off-by: Jeff DeCew <jeffdq@google.com>
Change-Id: Ic9afe118bce2c364328a6d8ff405ab4a638ddc84
This commit is contained in:
Jeff DeCew
2021-12-31 00:57:03 +00:00
parent 752e4256a8
commit 5bdc87a511

View File

@@ -120,7 +120,7 @@ public final class MediaCoordinatorTest extends SysuiTestCase {
private NotifFilter captureFilter(MediaCoordinator coordinator) {
ArgumentCaptor<NotifFilter> filterCaptor = ArgumentCaptor.forClass(NotifFilter.class);
coordinator.attach(mNotifPipeline);
verify(mNotifPipeline).addFinalizeFilter(filterCaptor.capture());
verify(mNotifPipeline).addPreGroupFilter(filterCaptor.capture());
return filterCaptor.getValue();
}
}