fix: inject deps for tests

This commit is contained in:
talksik
2026-04-14 11:14:22 -07:00
parent bc98b58f84
commit 94203f7ab5
2 changed files with 11 additions and 9 deletions
+2 -1
View File
@@ -6,6 +6,7 @@ import (
"testing"
pbaero "github.com/flowy-live/llink/genproto/aero"
"github.com/flowy-live/llink/internal/billing"
"github.com/flowy-live/llink/internal/network"
"github.com/flowy-live/llink/internal/network/mocks"
"github.com/flowy-live/llink/internal/testhelper"
@@ -31,7 +32,7 @@ func newTestService(t *testing.T) network.Service {
ShootEmail(gomock.Any(), gomock.Any()).
Return(&pbaero.ShootEmailResponse{}, nil).
AnyTimes()
return network.NewService(dbPool, mockAero)
return network.NewService(dbPool, mockAero, billing.Noop())
}
func TestNetworkService(t *testing.T) {