diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-10-13 14:13:51 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-10-13 14:13:51 +0100 |
commit | 889778155811277585debda837c359a4ae471706 (patch) | |
tree | b3b5c85efff17d3c39f493e515ac27e099b62043 /tests/api | |
parent | Update the v2 filters to support filtering presence and remove support for pu... (diff) | |
download | synapse-889778155811277585debda837c359a4ae471706.tar.xz |
update filtering tests
Diffstat (limited to 'tests/api')
-rw-r--r-- | tests/api/test_filtering.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/api/test_filtering.py b/tests/api/test_filtering.py index 65b2f590c8..6942cdac51 100644 --- a/tests/api/test_filtering.py +++ b/tests/api/test_filtering.py @@ -345,9 +345,9 @@ class FilteringTestCase(unittest.TestCase): ) @defer.inlineCallbacks - def test_filter_public_user_data_match(self): + def test_filter_presence_match(self): user_filter_json = { - "public_user_data": { + "presence": { "types": ["m.*"] } } @@ -368,13 +368,13 @@ class FilteringTestCase(unittest.TestCase): filter_id=filter_id, ) - results = user_filter.filter_public_user_data(events=events) + results = user_filter.filter_presence(events=events) self.assertEquals(events, results) @defer.inlineCallbacks - def test_filter_public_user_data_no_match(self): + def test_filter_presence_no_match(self): user_filter_json = { - "public_user_data": { + "presence": { "types": ["m.*"] } } @@ -395,7 +395,7 @@ class FilteringTestCase(unittest.TestCase): filter_id=filter_id, ) - results = user_filter.filter_public_user_data(events=events) + results = user_filter.filter_presence(events=events) self.assertEquals([], results) @defer.inlineCallbacks |