Merge "Use assertEqual() instead of assertDictEqual()"

This commit is contained in:
Jenkins 2016-11-18 16:45:53 +00:00 committed by Gerrit Code Review
commit 09d501dc7c
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class BaseISCSIConnectorTestCase(test_base.TestCase):
'target_iqn': mock.sentinel.iqn,
'target_lun': mock.sentinel.lun,
'extra_property': 'extra_property'}
self.assertDictEqual(expected_props, list_props[0])
self.assertEqual(expected_props, list_props[0])
def test_get_all_targets(self):
connection_properties = {