From 94992940dde8fa3159a70cf741826fc1a42e56ad Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Sun, 15 Oct 2017 20:33:59 +0100 Subject: [PATCH] ssh_test: Correct hostname in SShTest.test_stream_name() I presume that `u1704` is a relic of a bygone container/host. --- tests/ssh_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ssh_test.py b/tests/ssh_test.py index 19a7405b..91a2398e 100644 --- a/tests/ssh_test.py +++ b/tests/ssh_test.py @@ -29,7 +29,7 @@ class SshTest(testlib.DockerMixin, unittest.TestCase): username='has-sudo', password='y', ) - self.assertEquals('ssh.u1704:%s' % (self.dockerized_ssh.port,), + self.assertEquals('ssh.localhost:%s' % (self.dockerized_ssh.port,), context.name) def test_via_stream_name(self):