| Index: sql/sqlite_features_unittest.cc
|
| diff --git a/sql/sqlite_features_unittest.cc b/sql/sqlite_features_unittest.cc
|
| index a25413def45b1af3df8d8549b2de7c455028029b..e5cca499727658f61e439f22b9769f66c5f5ac01 100644
|
| --- a/sql/sqlite_features_unittest.cc
|
| +++ b/sql/sqlite_features_unittest.cc
|
| @@ -81,7 +81,8 @@ class SQLiteFeaturesTest : public testing::Test {
|
| // Do not include fts1 support, it is not useful, and nobody is
|
| // looking at it.
|
| TEST_F(SQLiteFeaturesTest, NoFTS1) {
|
| - ASSERT_FALSE(db().Execute("CREATE VIRTUAL TABLE foo USING fts1(x)"));
|
| + ASSERT_EQ(SQLITE_ERROR, db().ExecuteAndReturnErrorCode(
|
| + "CREATE VIRTUAL TABLE foo USING fts1(x)"));
|
| }
|
|
|
| // fts2 is used for older history files, so we're signed on for
|
|
|