Index: chrome/test/ui/named_interface_uitest.cc |
diff --git a/chrome/test/ui/named_interface_uitest.cc b/chrome/test/ui/named_interface_uitest.cc |
index 84341fc6af21e4bdc261f1716daf9a7ba5e8728d..a6201283dd296628794e81ba945adac4aa1af4e3 100644 |
--- a/chrome/test/ui/named_interface_uitest.cc |
+++ b/chrome/test/ui/named_interface_uitest.cc |
@@ -23,17 +23,10 @@ class NamedInterfaceTest : public UITest { |
} |
}; |
-// This test is flaky on Linux bots. http://crbug.com/66414 |
-#if defined(OS_LINUX) |
-#define MAYBE_BasicNamedInterface FLAKY_BasicNamedInterface |
-#else |
-#define MAYBE_BasicNamedInterface BasicNamedInterface |
-#endif |
- |
// Basic sanity test for named testing interface which |
// launches a browser instance that uses a named socket, then |
// sends it some commands to open some tabs over that socket. |
-TEST_F(NamedInterfaceTest, MAYBE_BasicNamedInterface) { |
+TEST_F(NamedInterfaceTest, BasicNamedInterface) { |
scoped_refptr<BrowserProxy> browser_proxy( |
automation()->GetBrowserWindow(0)); |
ASSERT_TRUE(browser_proxy.get()); |
@@ -46,4 +39,3 @@ TEST_F(NamedInterfaceTest, MAYBE_BasicNamedInterface) { |
// then reconnect with a new connection and continue automation. |
} // namespace |
- |