Index: chrome/browser/errorpage_uitest.cc |
diff --git a/chrome/browser/errorpage_uitest.cc b/chrome/browser/errorpage_uitest.cc |
index 6c1f34f61c52f70ebac8b7851b7c927299ca9169..efd71357ba7129e233d0234e10dffa5151eb13cc 100644 |
--- a/chrome/browser/errorpage_uitest.cc |
+++ b/chrome/browser/errorpage_uitest.cc |
@@ -12,10 +12,10 @@ |
class ErrorPageTest : public UITest { |
protected: |
bool WaitForTitleMatching(const std::wstring& title) { |
- for (int i = 0; i < 100; ++i) { |
+ for (int i = 0; i < 10; ++i) { |
if (GetActiveTabTitle() == title) |
return true; |
- PlatformThread::Sleep(sleep_timeout_ms() / 10); |
+ PlatformThread::Sleep(sleep_timeout_ms()); |
} |
EXPECT_EQ(title, GetActiveTabTitle()); |
return false; |