Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a54c22ed authored by Edgar Arriaga García's avatar Edgar Arriaga García Committed by Android (Google) Code Review
Browse files

Merge "Fix test that did not know about pool stats"

parents eab2d348 ecc21644
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -161,7 +161,7 @@ public class SQLiteOpenHelperTest {
        boolean dbStatFound = false;
        SQLiteDebug.PagerStats info = SQLiteDebug.getDatabaseInfo();
        for (SQLiteDebug.DbStats dbStat : info.dbStats) {
            if (dbStat.dbName.endsWith(dbName)) {
            if (dbStat.dbName.endsWith(dbName) && !dbStat.arePoolStats) {
                dbStatFound = true;
                Log.i(TAG, "Lookaside for " + dbStat.dbName + " " + dbStat.lookaside);
                if (expectDisabled) {