diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-02-04 15:21:03 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-02-04 15:21:03 +0000 |
commit | 89f2e8fbdf7965d02426ef17ca6a9490219a2ec4 (patch) | |
tree | 34c91f505f52cda2517509d093691af67b72d9f5 /tests/handlers | |
parent | Begin to add unit tests for appservice glue and regex testing. (diff) | |
download | synapse-89f2e8fbdf7965d02426ef17ca6a9490219a2ec4.tar.xz |
Fix bug in store defer. Add more unit tests.
Diffstat (limited to 'tests/handlers')
-rw-r--r-- | tests/handlers/test_appservice.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/handlers/test_appservice.py b/tests/handlers/test_appservice.py index 9c464e7fbc..1daa314f20 100644 --- a/tests/handlers/test_appservice.py +++ b/tests/handlers/test_appservice.py @@ -18,12 +18,8 @@ from .. import unittest from synapse.handlers.appservice import ApplicationServicesHandler -from collections import namedtuple from mock import Mock -# TODO: Should this be a more general thing? tests/api/test_filtering.py uses it -MockEvent = namedtuple("MockEvent", "sender type room_id") - class AppServiceHandlerTestCase(unittest.TestCase): """ Tests the ApplicationServicesHandler. """ @@ -51,7 +47,7 @@ class AppServiceHandlerTestCase(unittest.TestCase): self.mock_store.get_app_services = Mock(return_value=services) - event = MockEvent( + event = Mock( sender="@someone:anywhere", type="m.room.message", room_id="!foo:bar" |