| 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 e15af203a7fac2ed4fc26138b34d8bbe6025f6fe..52f181cef4c524df7cad099ad434ca42015238f1 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
|
| @@ -7,6 +7,7 @@ package org.chromium.chrome.browser.payments;
|
| import android.content.DialogInterface;
|
| import android.test.suitebuilder.annotation.MediumTest;
|
|
|
| +import org.chromium.base.test.util.Feature;
|
| import org.chromium.chrome.R;
|
| import org.chromium.chrome.browser.autofill.AutofillTestHelper;
|
| import org.chromium.chrome.browser.autofill.PersonalDataManager.AutofillProfile;
|
| @@ -45,6 +46,7 @@ public class PaymentRequestPaymentAppAndCardsTest extends PaymentRequestTestBase
|
| * responds quickly.
|
| */
|
| @MediumTest
|
| + @Feature({"Payments"})
|
| public void testNoInstrumentsInFastBobPay() throws InterruptedException, ExecutionException,
|
| TimeoutException {
|
| runTest(NO_INSTRUMENTS, IMMEDIATE_RESPONSE);
|
| @@ -55,6 +57,7 @@ public class PaymentRequestPaymentAppAndCardsTest extends PaymentRequestTestBase
|
| * responds slowly.
|
| */
|
| @MediumTest
|
| + @Feature({"Payments"})
|
| public void testNoInstrumentsInSlowBobPay() throws InterruptedException, ExecutionException,
|
| TimeoutException {
|
| runTest(NO_INSTRUMENTS, DELAYED_RESPONSE);
|
| @@ -65,6 +68,7 @@ public class PaymentRequestPaymentAppAndCardsTest extends PaymentRequestTestBase
|
| * quickly.
|
| */
|
| @MediumTest
|
| + @Feature({"Payments"})
|
| public void testHaveInstrumentsInFastBobPay() throws InterruptedException, ExecutionException,
|
| TimeoutException {
|
| runTest(HAVE_INSTRUMENTS, IMMEDIATE_RESPONSE);
|
| @@ -75,6 +79,7 @@ public class PaymentRequestPaymentAppAndCardsTest extends PaymentRequestTestBase
|
| * slowly.
|
| */
|
| @MediumTest
|
| + @Feature({"Payments"})
|
| public void testHaveInstrumentsInSlowBobPay() throws InterruptedException, ExecutionException,
|
| TimeoutException {
|
| runTest(HAVE_INSTRUMENTS, DELAYED_RESPONSE);
|
|
|