summary refs log tree commit diff
path: root/tests/api
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-01-29 14:15:12 +0000
committerMark Haines <mark.haines@matrix.org>2016-01-29 14:15:12 +0000
commit47374a33fc195bf44363006070268fd60ffff047 (patch)
treeea2931512014f5f7361bee5c7f768506adbf783a /tests/api
parentAdd config option for setting the trusted id servers, disabling checking the ... (diff)
parentBump AccountDataAndTagsChangeCache size (diff)
downloadsynapse-47374a33fc195bf44363006070268fd60ffff047.tar.xz
Merge remote-tracking branch 'origin/develop' into markjh/3pid
Diffstat (limited to 'tests/api')
-rw-r--r--tests/api/test_filtering.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/api/test_filtering.py b/tests/api/test_filtering.py

index 1a4e439d30..ceb0089268 100644 --- a/tests/api/test_filtering.py +++ b/tests/api/test_filtering.py
@@ -382,19 +382,20 @@ class FilteringTestCase(unittest.TestCase): "types": ["m.*"] } } - user = UserID.from_string("@" + user_localpart + ":test") + filter_id = yield self.datastore.add_user_filter( - user_localpart=user_localpart, + user_localpart=user_localpart + "2", user_filter=user_filter_json, ) event = MockEvent( + event_id="$asdasd:localhost", sender="@foo:bar", type="custom.avatar.3d.crazy", ) events = [event] user_filter = yield self.filtering.get_user_filter( - user_localpart=user_localpart, + user_localpart=user_localpart + "2", filter_id=filter_id, )