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

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

Issue 2189563002: Use server ID to identify server cards. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 137694bc9f9c0e6482ae3d4b04761842495f9078..5a9b57f5ef4b88a955cd5f457a772122ac2f4f7c 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
@@ -33,11 +33,11 @@ public class PaymentRequestPaymentAppAndCardsTest extends PaymentRequestTestBase
// 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,
- ""));
+ "" /* 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));
+ "4111111111111111", "", "12", "2050", "visa", R.drawable.pr_visa, billingAddressId,
+ "" /* serverId */));
}
/**

Powered by Google App Engine
This is Rietveld 408576698