Fixing GridMigrationTask tests

Bug: 62907570
Change-Id: Id165e70930025ccf13a1a105acbdc0fb59ee7e32
This commit is contained in:
Sunny Goyal 2017-06-22 15:25:40 -07:00
parent 293fba031e
commit 01088543c9
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package com.android.launcher3.util;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import com.android.launcher3.LauncherProvider;
@ -43,5 +44,8 @@ public class TestLauncherProvider extends LauncherProvider {
@Override
protected void onEmptyDbCreated() { }
@Override
protected void handleOneTimeDataUpgrade(SQLiteDatabase db) { }
}
}