| Index: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestDynamicShippingSingleAddressTest.java
|
| diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestDynamicShippingSingleAddressTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestDynamicShippingSingleAddressTest.java
|
| index 3177fbedcc4f9d9611247b5d0dcf920fe102a913..5f559852619f97694d39323f66e58ea93f693fbb 100644
|
| --- a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestDynamicShippingSingleAddressTest.java
|
| +++ b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestDynamicShippingSingleAddressTest.java
|
| @@ -29,11 +29,12 @@ public class PaymentRequestDynamicShippingSingleAddressTest extends PaymentReque
|
| throws InterruptedException, ExecutionException, TimeoutException {
|
| AutofillTestHelper helper = new AutofillTestHelper();
|
| // The user has a shipping address on disk.
|
| - helper.setProfile(new AutofillProfile("", "https://example.com", true, "Jon Doe", "Google",
|
| - "340 Main St", "CA", "Los Angeles", "", "90291", "", "US", "", "", "en-US"));
|
| + String billingAddressId = helper.setProfile(new AutofillProfile("", "https://example.com",
|
| + true, "Jon Doe", "Google", "340 Main St", "CA", "Los Angeles", "", "90291", "",
|
| + "US", "", "", "en-US"));
|
| helper.setCreditCard(new CreditCard("", "https://example.com", true, true, "Jon Doe",
|
| "4111111111111111", "1111", "12", "2050", "visa", R.drawable.pr_visa,
|
| - "" /* billingAddressId */));
|
| + billingAddressId));
|
| }
|
|
|
| /** The shipping address should not be selected in UI by default. */
|
|
|