Skip to content

Commit

Permalink
fix: remove unnecessary logger param
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanVergiliev committed Oct 19, 2022
1 parent c932bb1 commit d0f1a0c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/server/web_server_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import (
"github.com/satsuma-data/node-gateway/internal/jsonrpc"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.uber.org/zap"
)

func TestServeHTTP_ForwardsToSoleHealthyUpstream(t *testing.T) {
Expand Down Expand Up @@ -257,7 +256,7 @@ func executeRequest(t *testing.T, request jsonrpc.RequestBody, handler *RPCHandl
}

func startRouterAndHandler(conf config.Config) *RPCHandler {
dependencyContainer := wireDependencies(conf, zap.L())
dependencyContainer := wireDependencies(conf)
router := dependencyContainer.router
router.Start()

Expand Down

0 comments on commit d0f1a0c

Please sign in to comment.