From: Lucas Di Pentima Date: Tue, 30 Nov 2021 15:37:00 +0000 (-0300) Subject: 18491: Removes an unnecessary check that made the test fail on module upgrade. X-Git-Tag: 2.4.0~150^2 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/bc3637c90f8e4e3d1bdc61546c3d7fc53da135f6 18491: Removes an unnecessary check that made the test fail on module upgrade. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- diff --git a/lib/controller/localdb/container_gateway_test.go b/lib/controller/localdb/container_gateway_test.go index 2a77357677..70037cc501 100644 --- a/lib/controller/localdb/container_gateway_test.go +++ b/lib/controller/localdb/container_gateway_test.go @@ -210,10 +210,9 @@ func (s *ContainerGatewaySuite) TestConnect(c *check.C) { // Receive binary _, err = io.ReadFull(sshconn.Conn, buf[:4]) c.Check(err, check.IsNil) - c.Check(buf[:4], check.DeepEquals, []byte{0, 0, 1, 0xfc}) // If we can get this far into an SSH handshake... - c.Log("success, tunnel is working") + c.Logf("was able to read %x -- success, tunnel is working", buf[:4]) }() select { case <-done: