From 5740266096d52b4f936f64a844ae2e5f2f0e2072 Mon Sep 17 00:00:00 2001 From: John Spray Date: Fri, 25 Jul 2014 17:01:39 +0100 Subject: [PATCH] test: catch a straggler still using 'data' pool Used rbd pool instead, which is still created by default. Signed-off-by: John Spray --- src/test/pybind/test_rados.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.47.3