Merge "Fix missing arg in test__cast_message()"

This commit is contained in:
Zuul 2019-07-20 05:00:11 +00:00 committed by Gerrit Code Review
commit ce988b5db0

View File

@ -254,7 +254,7 @@ class TestDhcpAgentNotifyAPI(base.BaseTestCase):
self.assertEqual(1, self.mock_fanout.call_count)
def test__cast_message(self):
self.notifier._cast_message(mock.ANY, mock.ANY, mock.ANY)
self.notifier._cast_message(mock.ANY, mock.ANY, mock.ANY, mock.ANY)
self.assertEqual(1, self.mock_cast.call_count)
def test__native_notification_unsubscribes(self):