summaryrefslogtreecommitdiff
path: root/tests/twisted/account-manager/create-auto-connect.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/twisted/account-manager/create-auto-connect.py')
-rw-r--r--tests/twisted/account-manager/create-auto-connect.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/twisted/account-manager/create-auto-connect.py b/tests/twisted/account-manager/create-auto-connect.py
index fa2cb470..45acda05 100644
--- a/tests/twisted/account-manager/create-auto-connect.py
+++ b/tests/twisted/account-manager/create-auto-connect.py
@@ -28,7 +28,7 @@ import constants as cs
def test(q, bus, mc):
params = dbus.Dictionary({"account": "smcv@example.com",
"password": "secrecy"}, signature='sv')
- (cm_name_ref, account) = create_fakecm_account(q, bus, mc, params)
+ (simulated_cm, account) = create_fakecm_account(q, bus, mc, params)
account_iface = dbus.Interface(account, cs.ACCOUNT)
account_props = dbus.Interface(account, cs.PROPERTIES_IFACE)
@@ -36,11 +36,11 @@ def test(q, bus, mc):
# Ensure that it's enabled but has offline RP
call_async(q, account_props, 'Set', cs.ACCOUNT, 'RequestedPresence',
- (dbus.UInt32(cs.PRESENCE_TYPE_OFFLINE), 'offline', ''))
+ (dbus.UInt32(cs.PRESENCE_OFFLINE), 'offline', ''))
q.expect('dbus-return', method='Set')
call_async(q, account_props, 'Set', cs.ACCOUNT, 'AutomaticPresence',
- (dbus.UInt32(cs.PRESENCE_TYPE_BUSY), 'busy',
+ (dbus.UInt32(cs.PRESENCE_BUSY), 'busy',
'Testing automatic presence'))
q.expect('dbus-return', method='Set')
q.expect('dbus-signal', signal='AccountPropertyChanged',