| Index: chrome/browser/ui/webui/options/language_options_dictionary_download_browsertest.js
|
| diff --git a/chrome/browser/ui/webui/options/language_options_dictionary_download_browsertest.js b/chrome/browser/ui/webui/options/language_options_dictionary_download_browsertest.js
|
| index 297335f1eb14d9469b067ed3eb69af0f263e50e9..174b32365a47ccb98e400e9a01f11b7a68fb3ab7 100644
|
| --- a/chrome/browser/ui/webui/options/language_options_dictionary_download_browsertest.js
|
| +++ b/chrome/browser/ui/webui/options/language_options_dictionary_download_browsertest.js
|
| @@ -110,8 +110,15 @@ TEST_F('LanguagesOptionsDictionaryDownloadWebUITest',
|
| });
|
|
|
| // Verify that clicking the retry button calls the handler.
|
| +// This test is flaky on Windows. https://crbug.com/616791
|
| +GEN('#if defined(OS_WIN)');
|
| +GEN('#define MAYBE_testdictionaryDownloadRetry ' +
|
| + 'DISABLED_testdictionaryDownloadRetry');
|
| +GEN('#else');
|
| +GEN('#define MAYBE_testdictionaryDownloadRetry testdictionaryDownloadRetry');
|
| +GEN('#endif // defined(OS_WIN)');
|
| TEST_F('LanguagesOptionsDictionaryDownloadWebUITest',
|
| - 'testdictionaryDownloadRetry',
|
| + 'MAYBE_testdictionaryDownloadRetry',
|
| function() {
|
| this.mockHandler.expects(once()).retryDictionaryDownload('en-US').
|
| will(callFunction(function() {
|
|
|