ceph-volume: fix ceph-volume simple scan help menu test

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
This commit is contained in:
Andrew Schoen 2018-02-05 13:53:13 -06:00
parent 00b14177bd
commit 2ee70bf2d1

View File

@ -8,7 +8,7 @@ class TestScan(object):
def test_main_spits_help_with_no_arguments(self, capsys):
scan.Scan([]).main()
stdout, stderr = capsys.readouterr()
assert 'Scan an OSD directory for files' in stdout
assert 'Scan an OSD directory (or data device) for files' in stdout
class TestGetContents(object):