Remove two timeouts in ResolverActivityTest.

These don't seem to be necessary for the respective tests
to pass, and they were hampering my ability to make changes
to the chooser refresh delay (since they reference the same
symbol). If we do end up needing to reinstate any delay
like this, we still shouldn't have to take a dependency on
Chooser from Resolver.

Bug: 224816815
Test: atest --iterations 30 ResolverActivityTest
Change-Id: Icf806e2babca048726fe33843df4f9f62e4bd138
Merged-In: Icf806e2babca048726fe33843df4f9f62e4bd138
This commit is contained in:
Joshua Trask
2022-03-15 15:31:50 -04:00
parent a501fcb752
commit 6121f00e1b

View File

@@ -516,8 +516,6 @@ public class ResolverActivityTest {
onView(withText(R.string.resolver_work_tab))
.perform(click());
waitForIdle();
// wait for the share sheet to expand
Thread.sleep(ChooserActivity.LIST_VIEW_UPDATE_INTERVAL_IN_MILLIS);
onView(first(allOf(withText(workResolvedComponentInfos.get(0)
.getResolveInfoAt(0).activityInfo.applicationInfo.name), isCompletelyDisplayed())))
.perform(click());
@@ -616,8 +614,6 @@ public class ResolverActivityTest {
onView(withText(R.string.resolver_work_tab))
.perform(click());
waitForIdle();
// wait for the share sheet to expand
Thread.sleep(ChooserActivity.LIST_VIEW_UPDATE_INTERVAL_IN_MILLIS);
onView(first(allOf(
withText(workResolvedComponentInfos.get(0)
.getResolveInfoAt(0).activityInfo.applicationInfo.name),