From: Shweta P Date: Tue, 16 Aug 2011 14:52:55 +0000 (-0700) Subject: Adding the changed UCS Driver function names in test_ucs_driver. X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=b8e95b59111f37aac87ab914d03f8f6702d16b02;p=openstack-build%2Fneutron-build.git Adding the changed UCS Driver function names in test_ucs_driver. --- diff --git a/quantum/plugins/cisco/tests/unit/test_ucs_driver.py b/quantum/plugins/cisco/tests/unit/test_ucs_driver.py index 0e71a8a0a..eaf646ff5 100644 --- a/quantum/plugins/cisco/tests/unit/test_ucs_driver.py +++ b/quantum/plugins/cisco/tests/unit/test_ucs_driver.py @@ -110,7 +110,7 @@ class TestUCSDriver(unittest.TestCase): """ LOG.debug("test_create_profile_post_data - START") - profile_details = self.ucsm_driver._change_vlan_in_profile_post_data( + profile_details = self.ucsm_driver._change_vlaninprof_post_data( self.profile_name, self.old_vlan_name, self.vlan_name) self.assertEqual(profile_details, expected_output) LOG.debug("test_create_profile_post - END") @@ -152,7 +152,7 @@ class TestUCSDriver(unittest.TestCase): """ LOG.debug("test_create_profile_client_data - START") - profile_details = self.ucsm_driver._create_profile_client_post_data( + profile_details = self.ucsm_driver._create_pclient_post_data( self.profile_name, self.profile_client_name) self.assertEqual(profile_details, expected_output) LOG.debug("test_create_profile_post - END")