From 566706fb10e6c626556fb5bab45d74c20ba922c1 Mon Sep 17 00:00:00 2001 From: Ramesh Nachimuthu Date: Fri, 2 May 2014 15:59:59 +0530 Subject: autoconf:Fix for pep8 issue fixing a small pep8 issue Change-Id: I203ae51d78b846184dc873b18a6bfbf526f937e3 Signed-off-by: Ramesh Nachimuthu Reviewed-on: http://review.gluster.org/7646 Reviewed-by: Sahina Bose --- tests/test_discover_volumes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/test_discover_volumes.py b/tests/test_discover_volumes.py index 0a61ba7..1e72933 100644 --- a/tests/test_discover_volumes.py +++ b/tests/test_discover_volumes.py @@ -39,12 +39,12 @@ class TestDiscoverVolumes(TestCaseBase): if volumeName: return {volumeName: volumes.get(volumeName)} else: - return volumes + return volumes def _getBrickByHostAndPath(self, bricksList, hostUuid, path): for brick in bricksList: if brick.get('hostUuid') == hostUuid and \ - brick.get('brickpath') == path: + brick.get('brickpath') == path: return brick return None -- cgit