mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2026-09-16 08:29:17 -04:00
Fix some merge issues
This commit is contained in:
1 parent
c9f3054682
commit
8880e35a7a
2 files changed
+3
-9
No files matched your search
@@ -489,11 +489,10 @@ public class LoyaltyCardViewActivityTest
|
||||
assertTrue(menu != null);
|
||||
|
||||
// The share, settings, add and star button should be present
|
||||
assertEquals(menu.size(), 4);
|
||||
assertEquals(menu.size(), 3);
|
||||
|
||||
assertEquals("Block Rotation", menu.findItem(R.id.action_lock_unlock).getTitle().toString());
|
||||
assertEquals("Share", menu.findItem(R.id.action_share).getTitle().toString());
|
||||
assertEquals("Edit", menu.findItem(R.id.action_edit).getTitle().toString());
|
||||
assertEquals("Add to favorites", menu.findItem(R.id.action_star_unstar).getTitle().toString());
|
||||
}
|
||||
|
||||
@@ -708,8 +707,8 @@ public class LoyaltyCardViewActivityTest
|
||||
final Menu menu = shadowOf(activity).getOptionsMenu();
|
||||
assertTrue(menu != null);
|
||||
|
||||
// The share, settings, add and star button should be present
|
||||
assertEquals(menu.size(), 4);
|
||||
// The share, settings and star button should be present
|
||||
assertEquals(menu.size(), 3);
|
||||
|
||||
assertEquals("Add to favorites", menu.findItem(R.id.action_star_unstar).getTitle().toString());
|
||||
|
||||
|
||||
Reference in new issue
Block a user