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

Unified Diff: chrome/browser/webdata/web_database_migration_unittest.cc

Issue 9706012: Add abstractions that let embedders drive tests of WebContents. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove CONTENT_EXPORT on statically linked functions. Merge to head for commit. 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
« no previous file with comments | « chrome/browser/ui/webui/web_ui_unittest.cc ('k') | chrome/test/base/chrome_render_view_host_test_harness.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/webdata/web_database_migration_unittest.cc
diff --git a/chrome/browser/webdata/web_database_migration_unittest.cc b/chrome/browser/webdata/web_database_migration_unittest.cc
index eabc0df2189cf3e9101339226be7df36cc92919b..18efb4eec06f4758acb8e3ef3074e54a15533b22 100644
--- a/chrome/browser/webdata/web_database_migration_unittest.cc
+++ b/chrome/browser/webdata/web_database_migration_unittest.cc
@@ -619,7 +619,7 @@ TEST_F(WebDatabaseMigrationTest, MigrateVersion27ToCurrent) {
EXPECT_EQ(1, s2.ColumnInt(12));
EXPECT_EQ(true, s2.ColumnBool(13));
EXPECT_EQ(6245, s2.ColumnInt(14));
- EXPECT_EQ(false, s2.ColumnBool(15));
+ EXPECT_FALSE(s2.ColumnBool(15));
EXPECT_EQ(std::string(), s2.ColumnString(16));
}
}
@@ -1844,7 +1844,7 @@ TEST_F(WebDatabaseMigrationTest, MigrateVersion42ToCurrent) {
EXPECT_EQ(1, s.ColumnInt(12));
EXPECT_EQ(true, s.ColumnBool(13));
EXPECT_EQ(6262, s.ColumnInt(14));
- EXPECT_EQ(false, s.ColumnBool(15));
+ EXPECT_FALSE(s.ColumnBool(15));
EXPECT_EQ("{google:baseURL}webhp?{google:RLZ}sourceid=chrome-instant&"
"ie={inputEncoding}&ion=1{searchTerms}&nord=1",
s.ColumnString(16));
« no previous file with comments | « chrome/browser/ui/webui/web_ui_unittest.cc ('k') | chrome/test/base/chrome_render_view_host_test_harness.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698