X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_mon%2Ftest%2FOpenStack%2Funit%2Ftest_notifier.py;h=f0fbf55f0de7758d8af3c2e6cd997a0e65cb31ab;hb=326907a0151bed5641a9e9e241bc3b05bf0b71b9;hp=951bf109f054e0889d6196c192c9c95435160222;hpb=24b8309395b534ffe4bff9b07f665951555ac955;p=osm%2FMON.git diff --git a/osm_mon/test/OpenStack/unit/test_notifier.py b/osm_mon/test/OpenStack/unit/test_notifier.py index 951bf10..f0fbf55 100644 --- a/osm_mon/test/OpenStack/unit/test_notifier.py +++ b/osm_mon/test/OpenStack/unit/test_notifier.py @@ -100,7 +100,7 @@ class TestNotifier(unittest.TestCase): set_head.assert_called_once() notify.assert_called_with(json.dumps(post_data)) - @mock.patch.object(KafkaProducer, "notify_alarm") + @mock.patch.object(KafkaProducer, "publish_alarm_response") @mock.patch.object(DatabaseManager, "get_alarm") def test_notify_alarm_valid_alarm( self, get_alarm, notify): @@ -116,7 +116,7 @@ class TestNotifier(unittest.TestCase): notify.assert_called_with("notify_alarm", mock.ANY) - @mock.patch.object(KafkaProducer, "notify_alarm") + @mock.patch.object(KafkaProducer, "publish_alarm_response") @mock.patch.object(DatabaseManager, "get_alarm") def test_notify_alarm_invalid_alarm( self, get_alarm, notify):