telepathy-mission-control: addressing.py: 'mailto' is the proper URI scheme

Guillaume Desmottes gdesmott at kemper.freedesktop.org
Wed Jan 9 05:04:17 PST 2013


Module: telepathy-mission-control
Branch: master
Commit: 4b5ccf8a74f6c80d4a9787fcaec445327d589800
URL:    http://cgit.freedesktop.org/telepathy/telepathy-mission-control/commit/?id=4b5ccf8a74f6c80d4a9787fcaec445327d589800

Author: Guillaume Desmottes <guillaume.desmottes at collabora.co.uk>
Date:   Tue Jan  8 13:53:06 2013 +0100

addressing.py: 'mailto' is the proper URI scheme

---

 tests/twisted/account/addressing.py |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/tests/twisted/account/addressing.py b/tests/twisted/account/addressing.py
index 84faae9..7032a81 100755
--- a/tests/twisted/account/addressing.py
+++ b/tests/twisted/account/addressing.py
@@ -43,22 +43,22 @@ def test(q, bus, mc):
     assertEquals (uri_schemes, [])
 
     # remove URI from empty list:
-    address_iface.SetURISchemeAssociation ('email', False)
+    address_iface.SetURISchemeAssociation ('mailto', False)
     uri_schemes = get_schemes (account_props)
     assertEquals (uri_schemes, [])
 
     # add association to empty list
-    address_iface.SetURISchemeAssociation ('email', True)
+    address_iface.SetURISchemeAssociation ('mailto', True)
     uri_schemes = get_schemes (account_props)
-    assertEquals (uri_schemes, ['email'])
+    assertEquals (uri_schemes, ['mailto'])
 
     # add association to list where it already resides
-    address_iface.SetURISchemeAssociation ('email', True)
+    address_iface.SetURISchemeAssociation ('mailto', True)
     uri_schemes = get_schemes (account_props)
-    assertEquals (uri_schemes, ['email'])
+    assertEquals (uri_schemes, ['mailto'])
 
     # remove association to produce empty list 
-    address_iface.SetURISchemeAssociation ('email', False)
+    address_iface.SetURISchemeAssociation ('mailto', False)
     uri_schemes = get_schemes (account_props)
     assertEquals (uri_schemes, [])
 



More information about the telepathy-commits mailing list