Fix functional tests after HM change

The health monitor defaults update [1] missed updating a functional
test (they were disabled at the time).  This patch fixes those tests
to reflect the change.

[1] https://review.openstack.org/#/c/381993/

Change-Id: I7cdbd0721e0fa675e662e7930e7e21afbb34f39a
Closes-Bug: #1630287
This commit is contained in:
Michael Johnson 2016-10-11 17:44:15 +00:00
parent a97dbf34dd
commit 01e8e8504a
1 changed files with 3 additions and 3 deletions

View File

@ -451,9 +451,9 @@ class TestLoadBalancerGraph(base.BaseAPITest):
'project_id': self._project_id
}
expected_hm = {
'http_method': None,
'url_path': None,
'expected_codes': None,
'http_method': 'GET',
'url_path': '/',
'expected_codes': '200',
'enabled': True
}
expected_hm.update(create_hm)