]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
test: catch a straggler still using 'data' pool 2142/head
authorJohn Spray <jspray@redhat.com>
Fri, 25 Jul 2014 16:01:39 +0000 (17:01 +0100)
committerJohn Spray <jspray@redhat.com>
Fri, 25 Jul 2014 16:01:39 +0000 (17:01 +0100)
Used rbd pool instead, which is still created by default.

Signed-off-by: John Spray <john.spray@redhat.com>
src/test/pybind/test_rados.py

index 3dd213b5150a3263097df5e26731296e58cf242b..fcbe4211be5aee1ddcc0bd6b645c7e8105cff8ad 100644 (file)
@@ -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):