diff options
| author | Zuul <zuul@review.opendev.org> | 2022-01-22 03:35:21 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2022-01-22 03:35:21 +0000 |
| commit | 2caabcd6a5728b0786ff53df7a671d4ecc48b733 (patch) | |
| tree | 305f251fa7a3691a6562010e1203df4f90b8401b /tempest/api/compute | |
| parent | 2ea105d084793b8a6490e71030f6d4b46c987830 (diff) | |
| parent | da34773534b50b72fb4445c368b0a5ea3e1264fa (diff) | |
| download | tempest-2caabcd6a5728b0786ff53df7a671d4ecc48b733.tar.gz | |
Merge "edit check result and make sure the query result correct"
Diffstat (limited to 'tempest/api/compute')
| -rw-r--r-- | tempest/api/compute/admin/test_agents.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tempest/api/compute/admin/test_agents.py b/tempest/api/compute/admin/test_agents.py index 4cc5fdd34..f54fb2245 100644 --- a/tempest/api/compute/admin/test_agents.py +++ b/tempest/api/compute/admin/test_agents.py @@ -119,3 +119,5 @@ class AgentsAdminTestJSON(base.BaseV2ComputeAdminTest): self.assertIn(agent_id_xen, map(lambda x: x['agent_id'], agents)) self.assertNotIn(body['agent_id'], map(lambda x: x['agent_id'], agents)) + for agent in agents: + self.assertEqual(agent_xen['hypervisor'], agent['hypervisor']) |
