diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-02-27 11:10:48 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-02-27 11:10:48 +0000 |
commit | 127efeeb68a4ee6fe6c3bfe417a980878f6e165d (patch) | |
tree | 2ba391ee955f20404ff78970335a762aec476bd0 /tests/storage/test_appservice.py | |
parent | Add functions to return whether an AS has exclusively claimed a matching name... (diff) | |
download | synapse-127efeeb68a4ee6fe6c3bfe417a980878f6e165d.tar.xz |
Update unit tests to use new format.
Diffstat (limited to 'tests/storage/test_appservice.py')
-rw-r--r-- | tests/storage/test_appservice.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/storage/test_appservice.py b/tests/storage/test_appservice.py index fc733d4c79..9a646fa6eb 100644 --- a/tests/storage/test_appservice.py +++ b/tests/storage/test_appservice.py @@ -50,9 +50,15 @@ class ApplicationServiceStoreTestCase(unittest.TestCase): def test_update_and_retrieval_of_service(self): url = "https://matrix.org/appservices/foobar" hs_token = "hstok" - user_regex = ["@foobar_.*:matrix.org"] - alias_regex = ["#foobar_.*:matrix.org"] - room_regex = [] + user_regex = [ + {"regex": "@foobar_.*:matrix.org", "exclusive": True} + ] + alias_regex = [ + {"regex": "#foobar_.*:matrix.org", "exclusive": True} + ] + room_regex = [ + + ] service = ApplicationService( url=url, hs_token=hs_token, token=self.as_token, namespaces={ ApplicationService.NS_USERS: user_regex, |