1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-09 17:44:59 +09:00

GO-3631 Remove unused stuff

This commit is contained in:
mcrakhman 2024-10-07 22:28:56 +02:00
parent 1ce9b7838a
commit ffdb7da386
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
2 changed files with 1 additions and 9 deletions

View file

@ -280,7 +280,6 @@ func newFixture(t *testing.T, expectOldAccount func(t *testing.T, fx *fixture))
coordClient: mock_coordinatorclient.NewMockCoordinatorClient(ctrl),
factory: mock_spacefactory.NewMockSpaceFactory(t),
notificationSender: mock_space.NewMockNotificationSender(t),
isNewAccount: NewMockisNewAccount(t),
objectStore: objectstore.NewStoreFixture(t),
updater: mock_space.NewMockcoordinatorStatusUpdater(t),
config: config.New(config.WithNewAccount(expectOldAccount == nil)),
@ -302,7 +301,6 @@ func newFixture(t *testing.T, expectOldAccount func(t *testing.T, fx *fixture))
Register(testutil.PrepareMock(ctx, fx.a, fx.updater)).
Register(testutil.PrepareMock(ctx, fx.a, fx.spaceCore)).
Register(testutil.PrepareMock(ctx, fx.a, fx.coordClient)).
Register(testutil.PrepareMock(ctx, fx.a, fx.isNewAccount)).
Register(testutil.PrepareMock(ctx, fx.a, fx.factory)).
Register(testutil.PrepareMock(ctx, fx.a, mock_notifications.NewMockNotifications(t))).
Register(fx.objectStore).
@ -328,7 +326,6 @@ type fixture struct {
ctrl *gomock.Controller
techSpace *mock_techspace.MockTechSpace
clientSpace *mock_clientspace.MockSpace
isNewAccount *MockisNewAccount
objectStore *objectstore.StoreFixture
}