summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/test_storage.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_storage.py b/tests/test_storage.py
index f080430..c736d1d 100644
--- a/tests/test_storage.py
+++ b/tests/test_storage.py
@@ -335,7 +335,8 @@ class TestStorageUtils(TestCaseBase):
'/proc/bus/usb': '/proc/bus/usb',
'proc': '/proc'}
mock_get_mount_point.return_value = "/"
- mock_get_brick_mount_points.return_value = {'server-1:/tmp/vol1-a': "/"}
+ mock_get_brick_mount_points.return_value = {'server-1:/tmp/vol1-a':
+ "/"}
bricks = glusternagios.storage.getBricksForDisk("/dev/vda2")
self.assertEquals(bricks, ['server-1:/tmp/vol1-a'])