Skip to content

Commit 5b94ff0

Browse files
committed
Fix merge conflicts.
1 parent 7dc4be1 commit 5b94ff0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/powersync/test/bucket_storage_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ void main() {
521521
BucketChecksum(bucket: 'bucket1', checksum: 2147483642)
522522
]));
523523

524-
final stats = db.select(
524+
final stats = await powersync.execute(
525525
'SELECT row_type as type, row_id as id, count(*) as count FROM ps_oplog GROUP BY row_type, row_id ORDER BY row_type, row_id');
526526
expect(
527527
stats,
@@ -562,7 +562,7 @@ void main() {
562562
writeCheckpoint: '4',
563563
checksums: [BucketChecksum(bucket: 'bucket1', checksum: -3)]));
564564

565-
final stats = db.select(
565+
final stats = await powersync.execute(
566566
'SELECT row_type as type, row_id as id, count(*) as count FROM ps_oplog GROUP BY row_type, row_id ORDER BY row_type, row_id');
567567
expect(
568568
stats,

0 commit comments

Comments
 (0)