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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestBillingAddressTest.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/PaymentRequestBillingAddressTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestBillingAddressTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestBillingAddressTest.java
index d5e32264511b920ce1f4fdc140f5012f04479c6a..4276ede84f2230a3183ea3cf7c53f9b71db3ca3c 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestBillingAddressTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestBillingAddressTest.java
@@ -59,7 +59,7 @@ public class PaymentRequestBillingAddressTest implements MainActivityStartCallba
"Jon Doe", "Google", "340 Main St", "CA", "Los Angeles", "", "90291", "", "US",
"650-253-0000", "jon.doe@gmail.com", "en-US"));
helper.setCreditCard(new CreditCard("", "https://example.com", true, true, "Jon Doe",
- "4111111111111111", "1111", "12", "2050", "visa", R.drawable.pr_visa, profile1,
+ "4111111111111111", "1111", "12", "2050", "visa", R.drawable.visa_card, profile1,
"" /* serverId */));
String profile2 = helper.setProfile(new AutofillProfile("", "https://example.com", true,
"Rob Doe", "Google", "340 Main St", "CA", "Los Angeles", "", "90291", "", "US",
@@ -94,7 +94,7 @@ public class PaymentRequestBillingAddressTest implements MainActivityStartCallba
// This card has no billing address selected.
helper.setCreditCard(new CreditCard("", "https://example.com", true, true, "Jane Doe",
- "4242424242424242", "1111", "12", "2050", "visa", R.drawable.pr_visa, profile6,
+ "4242424242424242", "1111", "12", "2050", "visa", R.drawable.visa_card, profile6,
"" /* serverId */));
// Assign use stats so that incomplete profiles have the highest frecency, profile2 has the

Powered by Google App Engine
This is Rietveld 408576698