summaryrefslogtreecommitdiffstats
path: root/starlingx/starlingx/registration/tests/test_registration2.py
diff options
context:
space:
mode:
Diffstat (limited to 'starlingx/starlingx/registration/tests/test_registration2.py')
-rw-r--r--starlingx/starlingx/registration/tests/test_registration2.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/starlingx/starlingx/registration/tests/test_registration2.py b/starlingx/starlingx/registration/tests/test_registration2.py
index 6f470eea..d2084ecf 100644
--- a/starlingx/starlingx/registration/tests/test_registration2.py
+++ b/starlingx/starlingx/registration/tests/test_registration2.py
@@ -86,12 +86,12 @@ class TestRegistration2(unittest.TestCase):
["get"], {"get": {
"content": MOCK_GET_FLAVOR_RESPONSE}}),
- resp = self.view.register_helper._discover_flavors(
+ retcode, content = self.view.register_helper._discover_flavors(
vimid="starlingx_RegionOne",
session=mock_session, viminfo=MOCK_VIM_INFO
)
- self.assertIsNone(resp)
+ self.assertEquals(retcode, 11)
def test_discover_flavors_w_hpa_numa(self):
restcall.req_to_aai = mock.Mock()
@@ -103,9 +103,9 @@ class TestRegistration2(unittest.TestCase):
"content": MOCK_GET_FLAVOR_EXTRASPECS_RESPONSE_w_hpa_numa}
]}),
- resp = self.view.register_helper._discover_flavors(
+ retcode, content = self.view.register_helper._discover_flavors(
vimid="starlingx_RegionOne",
session=mock_session, viminfo=MOCK_VIM_INFO
)
- self.assertIsNone(resp)
+ self.assertEquals(retcode, 11)