feat(mobile): lose filter param in mergedBucket query test

This commit is contained in:
Penlane 2026-08-01 18:16:59 +02:00
parent 6d989939c6
commit 77eff13f60

View file

@ -43,7 +43,7 @@ void main() {
),
);
final buckets = await db.mergedAssetDrift.mergedBucket(groupBy: GroupAssetsBy.day.index, userIds: [userId], filter: AssetOriginFilter.all.index).get();
final buckets = await db.mergedAssetDrift.mergedBucket(groupBy: GroupAssetsBy.day.index, userIds: [userId]).get();
expect(buckets, hasLength(1));
expect(buckets.single.assetCount, 1);