Fix unit tests after charms.openstack update

A recent commit to charms.openstack (78ce162e) added support for
using endpoints rather than relations. This caused an aodh unit
test to fail as it was looking for an endpoint. This change is a
simple fix for that.

Change-Id: I6b41352ccf0e422cd5e80a7a47f640164df3e14b
This commit is contained in:
Liam Young 2018-10-23 10:03:03 +01:00
parent 75837a09df
commit af1bc5648c
1 changed files with 4 additions and 4 deletions

View File

@ -76,13 +76,13 @@ class TestAodhAdapters(Helper):
aodh.charms_openstack.adapters.APIConfigurationAdapter,
'get_network_addresses')
cluster_relation = mock.MagicMock()
cluster_relation.relation_name = 'cluster'
cluster_relation.endpoint_name = 'cluster'
amqp_relation = mock.MagicMock()
amqp_relation.relation_name = 'amqp'
amqp_relation.endpoint_name = 'amqp'
shared_db_relation = mock.MagicMock()
shared_db_relation.relation_name = 'shared_db'
shared_db_relation.endpoint_name = 'shared_db'
other_relation = mock.MagicMock()
other_relation.relation_name = 'other'
other_relation.endpoint_name = 'other'
other_relation.thingy = 'help'
# verify that the class is created with a AodhConfigurationAdapter
b = aodh.AodhAdapters([amqp_relation,