ssh: fix test to match updated log format.

issue510
David Wilson 6 years ago
parent 77e7cadd22
commit 2fdbd0cfcd

@ -57,7 +57,8 @@ class SshTest(testlib.DockerMixin, testlib.TestCase):
finally: finally:
s = capture.stop() s = capture.stop()
self.assertTrue("'): debug1: Reading configuration data" in s) expect = "%s: debug1: Reading configuration data" % (context.name,)
self.assertTrue(expect in s)
def test_stream_name(self): def test_stream_name(self):
context = self.docker_ssh( context = self.docker_ssh(

Loading…
Cancel
Save