X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/38489133d0d3ba3797447272edea7f618cf352df..e23f03950b82e72de23c4c44112785a9e92ea235:/services/keep-web/server_test.go diff --git a/services/keep-web/server_test.go b/services/keep-web/server_test.go index d592295209..2d28dbc5d7 100644 --- a/services/keep-web/server_test.go +++ b/services/keep-web/server_test.go @@ -6,6 +6,7 @@ package main import ( "bytes" + "context" "crypto/md5" "encoding/json" "fmt" @@ -433,7 +434,7 @@ func (s *IntegrationSuite) SetUpTest(c *check.C) { ldr.Path = "-" arvCfg, err := ldr.Load() c.Check(err, check.IsNil) - cfg := newConfig(arvCfg) + cfg := newConfig(ctxlog.TestLogger(c), arvCfg) c.Assert(err, check.IsNil) cfg.Client = arvados.Client{ APIHost: testAPIHost, @@ -447,7 +448,9 @@ func (s *IntegrationSuite) SetUpTest(c *check.C) { cfg.cluster.Users.AnonymousUserToken = arvadostest.AnonymousToken s.ArvConfig = arvCfg s.testServer = &server{Config: cfg} - err = s.testServer.Start(ctxlog.TestLogger(c)) + logger := ctxlog.TestLogger(c) + ctx := ctxlog.Context(context.Background(), logger) + err = s.testServer.Start(ctx, logger) c.Assert(err, check.Equals, nil) }