Changeset - b045e5bee8ea
[Not reviewed]
default
0 1 0
Kemp - 6 years ago 2018-04-09 12:53:36

Update tests to match last commit's renaming
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
tests/test_neodevice.py
Show inline comments
...
 
@@ -78,11 +78,11 @@ class TestSubscriptions:
 

 
        neodevice.subscribe_to(callback, auto_remove=True)
 
        neodevice._process_msg_queue()
 
        assert len(neodevice.subscriptions) == 0
 
        assert len(neodevice._subscriptions) == 0
 

 
        neodevice.subscribe_to(callback, auto_remove=False)
 
        neodevice._process_msg_queue()
 
        assert len(neodevice.subscriptions) == 1
 
        assert len(neodevice._subscriptions) == 1
 

 

 
    def test_subscription_user_data(self) -> None:
0 comments (0 inline, 0 general)