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

Fix end to end tests. #10059

Merged
merged 2 commits into from
Feb 1, 2025
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
Next Next commit
Fix end to end tests.
jaynewstrom-stripe committed Feb 1, 2025
commit 8aa97581885661029e5ee3b94ff3f820a7315c04
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ class CreateCardTokenActivityTest {
onView(withId(StripeR.id.card_number_edit_text))
.perform(replaceText("4242424242424242"))
onView(withId(StripeR.id.expiry_date_edit_text))
.perform(replaceText("01/25"))
.perform(replaceText("01/45"))
onView(withId(StripeR.id.cvc_edit_text))
.perform(replaceText("111"))

Original file line number Diff line number Diff line change
@@ -607,7 +607,7 @@ internal class EndToEndTest {
CardParams(
number = "4242424242424242",
expMonth = 1,
expYear = 2025,
expYear = 2045,
cvc = "123"
)
)