From: Rishabh Dave Date: Thu, 6 Jun 2019 09:02:04 +0000 (+0530) Subject: test_volume_client: don't shadow class variable X-Git-Tag: v15.1.0~2414^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=4870574473d592194ef17c152f304d4e968f3771;p=ceph-ci.git test_volume_client: don't shadow class variable Name class and instance variables differently so that the latter doesn't shadow the former. Signed-off-by: Rishabh Dave --- diff --git a/qa/tasks/cephfs/test_volume_client.py b/qa/tasks/cephfs/test_volume_client.py index 16a5ca9f152..48b3e7566c9 100644 --- a/qa/tasks/cephfs/test_volume_client.py +++ b/qa/tasks/cephfs/test_volume_client.py @@ -14,7 +14,7 @@ class TestVolumeClient(CephFSTestCase): # One for looking at the global filesystem, one for being # the VolumeClient, two for mounting the created shares CLIENTS_REQUIRED = 4 - py_version = 'python' + default_py_version = 'python' def setUp(self): CephFSTestCase.setUp(self)