Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes part of #3362: Used AccessibilityTestRule for Espresso Tests #3369

Merged
merged 2 commits into from
Jun 23, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Nit fix
  • Loading branch information
Rajat Talesra committed Jun 23, 2021
commit 9bf3c3a8924c914aa9edfef70c79d3e08f21df75
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class RecentlyPlayedFragmentTest {
withParent(withId(R.id.recently_played_toolbar))
)
).check(
matches(withText(R.string.stories_for_you))
matches(withText(R.string.recently_played_activity))
)
}
}
Expand Down Expand Up @@ -590,7 +590,7 @@ class RecentlyPlayedFragmentTest {
onView(
allOf(instanceOf(TextView::class.java), withParent(withId(R.id.recently_played_toolbar)))
).check(
matches(withText(R.string.stories_for_you))
matches(withText(R.string.recently_played_activity))
)
}
}
Expand Down