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

Unified Diff: chrome/test/reliability/automated_ui_test_test.cc

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 9 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
Index: chrome/test/reliability/automated_ui_test_test.cc
diff --git a/chrome/test/reliability/automated_ui_test_test.cc b/chrome/test/reliability/automated_ui_test_test.cc
index f537151384ea2bc1dd85ac003a4b2d9bfc0ba19d..53cce9e19b68feae8daf0770e1762d5a0c1fa9fe 100644
--- a/chrome/test/reliability/automated_ui_test_test.cc
+++ b/chrome/test/reliability/automated_ui_test_test.cc
@@ -428,6 +428,8 @@ TEST_F(AutomatedUITestBase, MAYBE_ShowHistory) {
ASSERT_TRUE(ShowHistory());
GURL url;
ASSERT_TRUE(GetActiveTab()->GetCurrentURL(&url));
- // TODO(csilv): Update this for uber page. http://crbug.com/111579.
- ASSERT_EQ(GURL(chrome::kChromeUIHistoryFrameURL), url);
+ ASSERT_EQ(
+ GURL(std::string(chrome::kChromeUIUberURL) +
Dan Beam 2012/03/23 03:25:31 nit: seems like this should be on same line as ASS
+ chrome::kChromeUIHistoryHost),
+ url);
}

Powered by Google App Engine
This is Rietveld 408576698