From 4870574473d592194ef17c152f304d4e968f3771 Mon Sep 17 00:00:00 2001 From: Rishabh Dave Date: Thu, 6 Jun 2019 14:32:04 +0530 Subject: [PATCH] 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 --- qa/tasks/cephfs/test_volume_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/cephfs/test_volume_client.py b/qa/tasks/cephfs/test_volume_client.py index 16a5ca9f152b1..48b3e7566c9df 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) -- 2.39.5