18491: Removes an unnecessary check that made the test fail on module upgrade.
authorLucas Di Pentima <lucas.dipentima@curii.com>
Tue, 30 Nov 2021 15:37:00 +0000 (12:37 -0300)
committerLucas Di Pentima <lucas.dipentima@curii.com>
Tue, 30 Nov 2021 15:37:00 +0000 (12:37 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

lib/controller/localdb/container_gateway_test.go

index 2a77357677b3d7f064832d471257866ef356b07a..70037cc501401375ee107d8e243f21e8f15c3cb5 100644 (file)
@@ -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: