| Index: components/autofill/core/browser/autofill_manager_unittest.cc
|
| diff --git a/components/autofill/core/browser/autofill_manager_unittest.cc b/components/autofill/core/browser/autofill_manager_unittest.cc
|
| index b1c9ceb8cc7c8fcf8836d93e55fec48f4b437789..dd0097e52414ce81f620bbe578cf0dcabef2ddfa 100644
|
| --- a/components/autofill/core/browser/autofill_manager_unittest.cc
|
| +++ b/components/autofill/core/browser/autofill_manager_unittest.cc
|
| @@ -3667,12 +3667,25 @@ TEST_F(AutofillManagerTest, FormSubmittedWithDefaultValues) {
|
| }
|
|
|
| // Tests that credit card data are saved for forms on https
|
| -TEST_F(AutofillManagerTest, ImportFormDataCreditCardHTTPS) {
|
| +// TODO(crbug.com/666704): Flaky on android_n5x_swarming_rel bot.
|
| +#if defined(OS_ANDROID)
|
| +#define MAYBE_ImportFormDataCreditCardHTTPS \
|
| + DISABLED_ImportFormDataCreditCardHTTPS
|
| +#else
|
| +#define MAYBE_ImportFormDataCreditCardHTTPS ImportFormDataCreditCardHTTPS
|
| +#endif
|
| +TEST_F(AutofillManagerTest, MAYBE_ImportFormDataCreditCardHTTPS) {
|
| TestSaveCreditCards(true);
|
| }
|
|
|
| // Tests that credit card data are saved for forms on http
|
| -TEST_F(AutofillManagerTest, ImportFormDataCreditCardHTTP) {
|
| +// TODO(crbug.com/666704): Flaky on android_n5x_swarming_rel bot.
|
| +#if defined(OS_ANDROID)
|
| +#define MAYBE_ImportFormDataCreditCardHTTP DISABLED_ImportFormDataCreditCardHTTP
|
| +#else
|
| +#define MAYBE_ImportFormDataCreditCardHTTP ImportFormDataCreditCardHTTP
|
| +#endif
|
| +TEST_F(AutofillManagerTest, MAYBE_ImportFormDataCreditCardHTTP) {
|
| TestSaveCreditCards(false);
|
| }
|
|
|
|
|