diff options
author | Erik Johnston <erik@matrix.org> | 2016-01-28 17:19:51 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-01-28 17:20:05 +0000 |
commit | 35981c8b71a2ce675f3b8414ca0e7920a5d1658e (patch) | |
tree | e921526099985bc8e8bf52404dd757da8c20e662 /tests | |
parent | Cache filters (diff) | |
download | synapse-35981c8b71a2ce675f3b8414ca0e7920a5d1658e.tar.xz |
Fix test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/api/test_filtering.py | 7 |
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, ) |