| Index: chrome/browser/ui/views/payments/payment_request_can_make_payment_browsertest.cc
|
| diff --git a/chrome/browser/ui/views/payments/payment_request_can_make_payment_browsertest.cc b/chrome/browser/ui/views/payments/payment_request_can_make_payment_browsertest.cc
|
| index bb42fac346d2b8f96c7578d1be34b765236e830b..ed8657a85d010e6326c03ae3c65904ea7e220291 100644
|
| --- a/chrome/browser/ui/views/payments/payment_request_can_make_payment_browsertest.cc
|
| +++ b/chrome/browser/ui/views/payments/payment_request_can_make_payment_browsertest.cc
|
| @@ -72,9 +72,16 @@ IN_PROC_BROWSER_TEST_F(PaymentRequestCanMakePaymentQueryTest,
|
|
|
| // Visa is required, and user doesn't have a visa instrument and the user is in
|
| // incognito mode.
|
| -// Test is flaky. crbug.com/705271
|
| +// Test is flaky on ChromeOS. crbug.com/705271
|
| +#if defined(OS_CHROMEOS)
|
| +#define MAYBE_CanMakePayment_NotSupported_Incognito \
|
| + DISABLED_CanMakePayment_NotSupported_Incognito
|
| +#else
|
| +#define MAYBE_CanMakePayment_NotSupported_Incognito \
|
| + CanMakePayment_NotSupported_Incognito
|
| +#endif
|
| IN_PROC_BROWSER_TEST_F(PaymentRequestCanMakePaymentQueryTest,
|
| - DISABLED_CanMakePayment_NotSupported_Incognito) {
|
| + MAYBE_CanMakePayment_NotSupported_Incognito) {
|
| SetIncognitoForTesting();
|
|
|
| const autofill::CreditCard card = autofill::test::GetCreditCard2(); // Amex.
|
|
|