diff options
author | Šimon Brandner <simon.bra.ag@gmail.com> | 2022-05-05 14:31:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 12:31:25 +0000 |
commit | 9ae0253f4e9f7aafb64abe3b5f04ad067883a121 (patch) | |
tree | fc6714cdc7d025f622503816a77d23cea0c18a81 /tests/rest | |
parent | Edits/annotations should not have any bundled aggregations calculated. (#12633) (diff) | |
download | synapse-9ae0253f4e9f7aafb64abe3b5f04ad067883a121.tar.xz |
Use `private` instead of `hidden` in MSC2285 related code. (#12635)
Diffstat (limited to 'tests/rest')
-rw-r--r-- | tests/rest/client/test_sync.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rest/client/test_sync.py b/tests/rest/client/test_sync.py index 67c94dd18f..0108337649 100644 --- a/tests/rest/client/test_sync.py +++ b/tests/rest/client/test_sync.py @@ -407,7 +407,7 @@ class ReadReceiptsTestCase(unittest.HomeserverTestCase): self.helper.join(room=self.room_id, user=self.user2, tok=self.tok2) @override_config({"experimental_features": {"msc2285_enabled": True}}) - def test_hidden_read_receipts(self) -> None: + def test_private_read_receipts(self) -> None: # Send a message as the first user res = self.helper.send(self.room_id, body="hello", tok=self.tok) @@ -639,7 +639,7 @@ class UnreadMessagesTestCase(unittest.HomeserverTestCase): # Check that the unread counter is back to 0. self._check_unread_count(0) - # Check that hidden read receipts don't break unread counts + # Check that private read receipts don't break unread counts res = self.helper.send(self.room_id, "hello", tok=self.tok2) self._check_unread_count(1) |