Merge pull request #1999 from jack24254029/fix_the_migrate_test

Fix the wrong version number on `migration_test`
This commit is contained in:
Simon Binder 2022-08-17 15:41:25 +02:00 committed by GitHub
commit 93fb0da38a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ void main() {
targetVersion <= currentSchema;
targetVersion++) {
test('to v$targetVersion', () async {
final connection = await verifier.startAt(1);
final connection = await verifier.startAt(oldVersion);
final db = Database(connection);
addTearDown(db.close);