Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1350)

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java

Issue 2888803003: [Payments] Use Autofill assets on Android Payment Request (Closed)
Patch Set: AppCompatResources in more places Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java
index 59133030c00f7a58db8830a4894f7040ef80132f..6bc66f8e24b49a175f76edcec371532cc10564cb 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPaymentAppAndCardsTest.java
@@ -53,12 +53,12 @@ public class PaymentRequestPaymentAppAndCardsTest implements MainActivityStartCa
"US", "310-310-6000", "jon.doe@gmail.com", "en-US"));
// Mastercard card without a billing address.
helper.setCreditCard(new CreditCard("", "https://example.com", true, true, "Jon Doe",
- "5454545454545454", "", "12", "2050", "mastercard", R.drawable.pr_mc,
+ "5454545454545454", "", "12", "2050", "mastercard", R.drawable.mc_card,
"" /* billingAddressId */, "" /* serverId */));
// Visa card with complete set of information.
helper.setCreditCard(new CreditCard("", "https://example.com", true, true, "Jon Doe",
- "4111111111111111", "", "12", "2050", "visa", R.drawable.pr_visa, billingAddressId,
- "" /* serverId */));
+ "4111111111111111", "", "12", "2050", "visa", R.drawable.visa_card,
+ billingAddressId, "" /* serverId */));
}
/**

Powered by Google App Engine
This is Rietveld 408576698