diff options
Diffstat (limited to 'tests/twisted/dispatcher/created-behind-our-back.py')
-rw-r--r-- | tests/twisted/dispatcher/created-behind-our-back.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/twisted/dispatcher/created-behind-our-back.py b/tests/twisted/dispatcher/created-behind-our-back.py index d768c099..8109e675 100644 --- a/tests/twisted/dispatcher/created-behind-our-back.py +++ b/tests/twisted/dispatcher/created-behind-our-back.py @@ -22,7 +22,7 @@ import dbus import dbus.service from servicetest import EventPattern, tp_name_prefix, tp_path_prefix, \ - call_async, sync_dbus + call_async, sync_dbus, assertEquals from mctest import exec_test, SimulatedConnection, SimulatedClient, \ create_fakecm_account, enable_fakecm_account, SimulatedChannel, \ expect_client_setup @@ -90,7 +90,7 @@ def test(q, bus, mc): assert e.args[2] == channel.object_path, channel.object_path assert e.args[3] == channel_immutable, channel_immutable assert e.args[4] == '/', e.args # no dispatch operation - assert e.args[5] == [], e.args # no requests satisfied + assertEquals({}, e.args[5]) # no requests satisfied assert e.args == k.args |