Skip to content

Commit

Permalink
Move sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
amberin authored Apr 4, 2024
1 parent 538f49e commit 2ed37f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ public void testNewSameNameSavedSearch() {
public void testUpdateSameNameSavedSearch() throws InterruptedException {
onView(withId(R.id.fragment_saved_searches_flipper)).check(matches(isDisplayed()));
onSavedSearch(0).perform(click());
Thread.sleep(500);
onView(withId(R.id.fragment_saved_search_flipper)).check(matches(isDisplayed()));
onView(withId(R.id.fragment_saved_search_query)).perform(typeText(" edited"));
onView(withId(R.id.done)).perform(click()); // Saved search done
Thread.sleep(500);
onView(withId(R.id.fragment_saved_searches_flipper)).check(matches(isDisplayed()));
}

Expand Down

0 comments on commit 2ed37f2

Please sign in to comment.