Skip to content
This repository has been archived by the owner on Apr 17, 2020. It is now read-only.

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmamie committed Dec 17, 2018
1 parent 4569f85 commit 8d6fc39
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,9 @@ public void deleteOffer() {
@Test
public void deleteClosedOffer() {
goToShowOffer();
TestUtility.showOfferCustomScrollTo();
onView(withId(R.id.close_offer_button)).perform(click());
onView(withId(R.id.button_delete_offer)).perform(click());
onView(withId(R.id.button_delete_closed_offer)).perform(click());
onView(withText(android.R.string.yes)).perform(click());
checkFragmentShown(ListOwnOfferActivity.class);
}
Expand Down

0 comments on commit 8d6fc39

Please sign in to comment.