diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-05-03 12:43:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 12:43:12 -0400 |
commit | aa5f5ede3331bf916f459137e9d0df3ac0743093 (patch) | |
tree | c8c35e984f4b0211d92caf4c00315ee00dc4b5f9 /tests/rest/client | |
parent | Add extra debug logging to federation sender (#12614) (diff) | |
download | synapse-aa5f5ede3331bf916f459137e9d0df3ac0743093.tar.xz |
Remove unstable identifiers for MSC3069. (#12596)
Diffstat (limited to 'tests/rest/client')
-rw-r--r-- | tests/rest/client/test_account.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/rest/client/test_account.py b/tests/rest/client/test_account.py index e00b5c171c..e0a11da97b 100644 --- a/tests/rest/client/test_account.py +++ b/tests/rest/client/test_account.py @@ -520,8 +520,6 @@ class WhoamiTestCase(unittest.HomeserverTestCase): { "user_id": user_id, "device_id": device_id, - # MSC3069 entered spec in Matrix 1.2 but maintained compatibility - "org.matrix.msc3069.is_guest": False, "is_guest": False, }, ) @@ -540,8 +538,6 @@ class WhoamiTestCase(unittest.HomeserverTestCase): { "user_id": user_id, "device_id": device_id, - # MSC3069 entered spec in Matrix 1.2 but maintained compatibility - "org.matrix.msc3069.is_guest": True, "is_guest": True, }, ) @@ -564,8 +560,6 @@ class WhoamiTestCase(unittest.HomeserverTestCase): whoami, { "user_id": user_id, - # MSC3069 entered spec in Matrix 1.2 but maintained compatibility - "org.matrix.msc3069.is_guest": False, "is_guest": False, }, ) |