20300: Fix unused var.
authorTom Clegg <tom@curii.com>
Fri, 6 Oct 2023 14:13:39 +0000 (10:13 -0400)
committerTom Clegg <tom@curii.com>
Fri, 6 Oct 2023 14:13:39 +0000 (10:13 -0400)
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

lib/controller/rpc/conn_test.go

index 452c6e15973e5e81d32eccf2b0a6055a077f29f4..18cb4ef6ed4194a96508b37dbbf56650e3f7ccab 100644 (file)
@@ -59,7 +59,7 @@ func (s *RPCSuite) TestRailsLogout404(c *check.C) {
        opts := arvados.LogoutOptions{
                ReturnTo: "https://foo.example.com/bar",
        }
-       resp, err := s.conn.Logout(s.ctx, opts)
+       _, err := s.conn.Logout(s.ctx, opts)
        c.Check(err.(*arvados.TransactionError).StatusCode, check.Equals, 404)
 }