Skip to content

Commit

Permalink
Fix db tests
Browse files Browse the repository at this point in the history
  • Loading branch information
micahmo committed Jul 12, 2024
1 parent 627e4d0 commit e4c9468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/database/migration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ void main() {
final tableNames = tables.map((e) => e.actualTableName).toList();

expect(tables.length, 5);
expect(tableNames, containsAll(['accounts', 'local_subscriptions', 'favorites', 'user_labels', 'drafts']));
expect(tableNames, containsAll(['accounts', 'local_subscriptions', 'favorites', 'user_labels', 'drafts', 'anonymous_instances']));

// Expect correct number of accounts, and correct information
final accounts = await db.accounts.all().get();
Expand Down

0 comments on commit e4c9468

Please sign in to comment.