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: v13.2.7~89^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4b93b3afac6730d3d148a921d35b3f452586a4e7;p=ceph.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 (cherry picked from commit 4870574473d592194ef17c152f304d4e968f3771) --- diff --git a/qa/tasks/cephfs/test_volume_client.py b/qa/tasks/cephfs/test_volume_client.py index ea497b6ee7cc..647417ee7a41 100644 --- a/qa/tasks/cephfs/test_volume_client.py +++ b/qa/tasks/cephfs/test_volume_client.py @@ -15,7 +15,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)