BREAKING: Move property observation API to NODE format

This commit is contained in:
jaseg 2017-05-10 18:25:31 +02:00
parent 303eedbb3b
commit c47bd2a2c6
2 changed files with 25 additions and 44 deletions

View file

@ -151,7 +151,7 @@ class ObservePropertyTest(unittest.TestCase):
m.loop = 'no'
m.loop = 'inf'
m.terminate() # needed for synchronization of event thread
handler.assert_has_calls([mock.call('no'), mock.call('inf')])
handler.assert_has_calls([mock.call('loop', False), mock.call('loop', 'inf')])
class TestLifecycle(unittest.TestCase):