From: John Spray Date: Fri, 25 Jul 2014 16:01:39 +0000 (+0100) Subject: test: catch a straggler still using 'data' pool X-Git-Tag: v0.84~64^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2142%2Fhead;p=ceph.git test: catch a straggler still using 'data' pool Used rbd pool instead, which is still created by default. Signed-off-by: John Spray --- diff --git a/src/test/pybind/test_rados.py b/src/test/pybind/test_rados.py index 3dd213b5150a..fcbe4211be5a 100644 --- a/src/test/pybind/test_rados.py +++ b/src/test/pybind/test_rados.py @@ -33,7 +33,7 @@ def test_rados_init(): def test_ioctx_context_manager(): with Rados(conffile='', rados_id='admin') as conn: - with conn.open_ioctx('data') as ioctx: + with conn.open_ioctx('rbd') as ioctx: pass class TestRados(object):