1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

Fix sync integration test

This commit is contained in:
mcrakhman 2024-12-10 12:16:39 +01:00
parent f30ab827d2
commit 8b30267d5e
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
7 changed files with 47 additions and 42 deletions

View file

@ -41,7 +41,7 @@ func (s *spaceStorageProvider) WaitSpaceStorage(ctx context.Context, id string)
if err != nil {
return nil, err
}
return spacestorage.New(id, db), nil
return spacestorage.New(ctx, id, db)
}
func (s *spaceStorageProvider) SpaceExists(id string) bool {