Merge "Change network allocation of Unity driver to 1"

This commit is contained in:
Jenkins 2016-12-12 13:46:28 +00:00 committed by Gerrit Code Review
commit a67c8a3c15
2 changed files with 2 additions and 2 deletions
manila
share/drivers/dell_emc/plugins/unity
tests/share/drivers/dell_emc/plugins/unity

@ -45,7 +45,7 @@ SUPPORTED_NETWORK_TYPES = (None, 'flat', 'vlan')
class UnityStorageConnection(driver.StorageConnection):
"""Implements Unity specific functionality for EMC Manila driver."""
IP_ALLOCATIONS = 2
IP_ALLOCATIONS = 1
@emc_utils.log_enter_exit
def __init__(self, *args, **kwargs):

@ -597,7 +597,7 @@ class TestConnection(test.TestCase):
@res_mock.patch_connection
def test_get_network_allocations_number(self, connection):
self.assertEqual(2, connection.get_network_allocations_number())
self.assertEqual(1, connection.get_network_allocations_number())
@res_mock.patch_connection
def test_get_proto_enum(self, connection):