From c486f2a38932abe2336962046a54f4e0022f47bc Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Wed, 18 Sep 2013 15:59:15 -0400 Subject: [PATCH] fix test that failed because of new help menu Signed-off-by: Alfredo Deza --- ceph_deploy/tests/test_cli_mon.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ceph_deploy/tests/test_cli_mon.py b/ceph_deploy/tests/test_cli_mon.py index 769e34e..bcbc31c 100644 --- a/ceph_deploy/tests/test_cli_mon.py +++ b/ceph_deploy/tests/test_cli_mon.py @@ -17,9 +17,8 @@ def test_help(tmpdir, cli): ) as p: result = p.stdout.read() assert 'usage: ceph-deploy' in result - assert 'Deploy ceph monitor on remote hosts.' in result - assert 'positional arguments:' - assert 'optional arguments:' + assert 'positional arguments:' in result + assert 'optional arguments:' in result def test_bad_no_conf(tmpdir, cli): -- 2.47.3