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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestJourneyLoggerTest.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/PaymentRequestJourneyLoggerTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestJourneyLoggerTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestJourneyLoggerTest.java
index 6172c6c5400ed3b9f5598ed553f8aa2ff9bb17a5..7bce4839115320b7c1b163897a13e13b65f76b5a 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestJourneyLoggerTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestJourneyLoggerTest.java
@@ -52,14 +52,14 @@ public class PaymentRequestJourneyLoggerTest implements MainActivityStartCallbac
true, "Jon Doe", "Google", "340 Main St", "CA", "Los Angeles", "", "90291", "",
"US", "650-253-0000", "", "en-US"));
mHelper.setCreditCard(new CreditCard("", "https://example.com", true, true, "Jon Doe",
- "4111111111111111", "1111", "12", "2050", "visa", R.drawable.pr_visa,
+ "4111111111111111", "1111", "12", "2050", "visa", R.drawable.visa_card,
mBillingAddressId, "" /* serverId */));
// The user also has an incomplete address and an incomplete card saved.
String mIncompleteAddressId = mHelper.setProfile(new AutofillProfile("",
"https://example.com", true, "In Complete", "Google", "344 Main St", "CA", "", "",
"90291", "", "US", "650-253-0000", "", "en-US"));
mHelper.setCreditCard(new CreditCard("", "https://example.com", true, true, "",
- "4111111111111111", "1111", "18", "2075", "visa", R.drawable.pr_visa,
+ "4111111111111111", "1111", "18", "2075", "visa", R.drawable.visa_card,
mIncompleteAddressId, "" /* serverId */));
}

Powered by Google App Engine
This is Rietveld 408576698