Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3588)

Unified Diff: chrome/browser/extensions/extension_tabs_apitest.cc

Issue 15059007: Disabling ExtensionApiTest.TabHighlight for being flaky. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added a crbug number Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_tabs_apitest.cc
diff --git a/chrome/browser/extensions/extension_tabs_apitest.cc b/chrome/browser/extensions/extension_tabs_apitest.cc
index 9ff406cbaa8b71ae7573a12305e64ee4fe3fe839..df04ad05b462306811d1ed5c851c630f0e939c23 100644
--- a/chrome/browser/extensions/extension_tabs_apitest.cc
+++ b/chrome/browser/extensions/extension_tabs_apitest.cc
@@ -129,7 +129,13 @@ IN_PROC_BROWSER_TEST_F(ExtensionApiTest, TabQuery) {
ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "query.html")) << message_;
}
-IN_PROC_BROWSER_TEST_F(ExtensionApiTest, TabHighlight) {
+// Flaky on windows: http://crbug.com/239022
+#if defined(OS_WIN)
+#define MAYBE_TabHighlight DISABLED_TabHighlight
+#else
+#define MAYBE_TabHighlight TabHighlight
+#endif
+IN_PROC_BROWSER_TEST_F(ExtensionApiTest, MAYBE_TabHighlight) {
ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "highlight.html")) << message_;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698