From: Zack Cerza Date: Wed, 18 Feb 2015 18:48:26 +0000 (-0700) Subject: Update out-of-date integration test X-Git-Tag: 1.1.0~1000 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=24f40507c9be5c01a5bae39d60870f90d2d2b915;p=teuthology.git Update out-of-date integration test Signed-off-by: Zack Cerza --- diff --git a/teuthology/orchestra/test/integration/test_integration.py b/teuthology/orchestra/test/integration/test_integration.py index 1fc34966..a9a528e8 100644 --- a/teuthology/orchestra/test/integration/test_integration.py +++ b/teuthology/orchestra/test/integration/test_integration.py @@ -41,10 +41,12 @@ class TestIntegration(): run.run, client=ssh, args=['sh', '-c', 'kill -ABRT $PPID'], + name=HOST, ) assert e.command == "sh -c 'kill -ABRT $PPID'" assert str(e) == \ - "SSH connection was lost: \"sh -c 'kill -ABRT $PPID'\"" + "SSH connection to {host} was lost: ".format(host=HOST) + \ + "\"sh -c 'kill -ABRT $PPID'\"" def test_pipe(self): ssh = connection.connect(HOST)