From 0631f84a6b804222dd71356b4236a870b8e3c45b Mon Sep 17 00:00:00 2001 From: Alexandr Burdiyan Date: Thu, 11 Jul 2024 19:27:05 +0200 Subject: [PATCH] test(backend): fix compilation error --- backend/syncing/syncing_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/syncing/syncing_test.go b/backend/syncing/syncing_test.go index dddd7c124..22b31fbb1 100644 --- a/backend/syncing/syncing_test.go +++ b/backend/syncing/syncing_test.go @@ -102,7 +102,7 @@ func makeTestNode(t *testing.T, name string) testNode { Account: accountKey, Blobs: blobs, Device: identity, - Syncer: NewService(cfg.Syncing, must.Do2(zap.NewDevelopment()).Named(name), db, blobs, n), + Syncer: NewService(cfg.Syncing, must.Do2(zap.NewDevelopment()).Named(name), db, nil, n), // TODO(hm24): add indexer here. } }