Merge "Change reference to OvnDbNotifyHandler._watched_events"

This commit is contained in:
Zuul 2020-10-02 16:49:45 +00:00 committed by Gerrit Code Review
commit a918fabf56
1 changed files with 6 additions and 1 deletions

View File

@ -99,7 +99,12 @@ class TestOvnDbNotifyHandler(base.BaseTestCase):
def setUp(self):
super(TestOvnDbNotifyHandler, self).setUp()
self.handler = ovsdb_monitor.OvnDbNotifyHandler(mock.ANY)
self.watched_events = self.handler._RowEventHandler__watched_events
# NOTE(ralonsoh): once the ovsdbapp library version is bumped beyond
# 1.5.0, the first assignation (using name mangling) can be deleted.
try:
self.watched_events = self.handler._RowEventHandler__watched_events
except AttributeError:
self.watched_events = self.handler._watched_events
def test_watch_and_unwatch_events(self):
expected_events = set()