use the renamed store repository in the share tests

This commit is contained in:
Santo Shakil 2026-08-19 14:44:29 +06:00
parent e6bc6d3406
commit 0e9c74597b

View file

@ -44,7 +44,7 @@ void main() {
setUpAll(() async {
db = Drift(DatabaseConnection(NativeDatabase.memory(), closeStreamsSynchronously: true));
store = await StoreService.init(storeRepository: DriftStoreRepository(db), listenUpdates: false);
store = await StoreService.init(storeRepository: StoreRepository(db), listenUpdates: false);
await SettingsRepository.ensureInitialized(db);
await Store.put(StoreKey.serverEndpoint, 'https://example.com/api');
final persistentStorage = _MockPersistentStorage();