| Index: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPhoneTest.java
|
| diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPhoneTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPhoneTest.java
|
| index d5ed7d9a09d91a49862e60b6da29cfa20532b914..639e1e9fa0eabd6ed222f21ef3828fdd33af42c5 100644
|
| --- a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPhoneTest.java
|
| +++ b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPhoneTest.java
|
| @@ -54,7 +54,7 @@ public class PaymentRequestPhoneTest extends PaymentRequestTestBase {
|
| triggerUIAndWait(mReadyToPay);
|
| clickInContactInfoAndWait(R.id.payments_section, mReadyForInput);
|
| clickInContactInfoAndWait(R.id.payments_add_option_button, mReadyToEdit);
|
| - setTextInEditor(R.id.payments_edit_phone_input, "+++");
|
| + setTextInEditor(new String[] {"+++"});
|
| clickInEditorAndWait(R.id.payments_edit_done_button, mEditorValidationError);
|
| clickInEditorAndWait(R.id.payments_edit_cancel_button, mEditorDismissed);
|
| clickAndWait(R.id.close_button, mDismissed);
|
| @@ -68,7 +68,7 @@ public class PaymentRequestPhoneTest extends PaymentRequestTestBase {
|
| triggerUIAndWait(mReadyToPay);
|
| clickInContactInfoAndWait(R.id.payments_section, mReadyForInput);
|
| clickInContactInfoAndWait(R.id.payments_add_option_button, mReadyToEdit);
|
| - setTextInEditor(R.id.payments_edit_phone_input, "999-999-9999");
|
| + setTextInEditor(new String[] {"999-999-9999"});
|
| clickInEditorAndWait(R.id.payments_edit_done_button, mReadyToPay);
|
| clickAndWait(R.id.button_primary, mReadyForUnmaskInput);
|
| setTextInCardUnmaskDialogAndWait(R.id.card_unmask_input, "123", mReadyToUnmask);
|
|
|