diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2011-08-24 18:42:47 +0100 |
---|---|---|
committer | Will Thompson <will.thompson@collabora.co.uk> | 2011-08-25 11:22:04 +0100 |
commit | 7ee4434e8049c170f9ee9766bd9b26913fc6e0cd (patch) | |
tree | 7db00344a196f31f0a38cceec69ad07b1cd8e369 /tests | |
parent | 5a37fb49c80cb89c27925a410d4a1056e88bba3e (diff) |
AccountManager: use _mcd_account_set_parameters error verbatim
Diffstat (limited to 'tests')
-rw-r--r-- | tests/twisted/account-manager/bad-cm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/twisted/account-manager/bad-cm.py b/tests/twisted/account-manager/bad-cm.py index f3d6f11f..b00b9138 100644 --- a/tests/twisted/account-manager/bad-cm.py +++ b/tests/twisted/account-manager/bad-cm.py @@ -42,7 +42,7 @@ def test(q, bus, mc): {}, # Properties ) e = q.expect('dbus-error', method='CreateAccount') - #assertEquals(cs.NOT_IMPLEMENTED, e.name) + assertEquals(cs.NOT_IMPLEMENTED, e.name) #assertContains("nonexistent_cm", e.message) # Create an account with a bad Protocol - it should fail @@ -57,7 +57,7 @@ def test(q, bus, mc): {}, # Properties ) e = q.expect('dbus-error', method='CreateAccount') - #assertEquals(cs.NOT_IMPLEMENTED, e.name) + assertEquals(cs.NOT_IMPLEMENTED, e.name) assertContains("nonexistent-protocol", e.message) # Create an account with incomplete Parameters - it should fail |