summary refs log tree commit diff
path: root/tests/federation
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2020-06-04 20:03:40 +0100
committerGitHub <noreply@github.com>2020-06-04 20:03:40 +0100
commitc389bfb6eac421b84d3f91b344e8f3a91e421e83 (patch)
treeb504f0464891be8ed7bd87c034fddf54d744fb71 /tests/federation
parentAdvertise the token login type when OpenID Connect is enabled. (#7631) (diff)
downloadsynapse-c389bfb6eac421b84d3f91b344e8f3a91e421e83.tar.xz
Fix encryption algorithm typos in tests/comments (#7637)
@uhoreg has confirmed these were both typos. They are only in comments and tests though, rather than anything critical.

Introduced in:

* https://github.com/matrix-org/synapse/pull/7157
* https://github.com/matrix-org/synapse/pull/5726
Diffstat (limited to 'tests/federation')
-rw-r--r--tests/federation/test_federation_sender.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/federation/test_federation_sender.py b/tests/federation/test_federation_sender.py
index 33105576af..ff12539041 100644
--- a/tests/federation/test_federation_sender.py
+++ b/tests/federation/test_federation_sender.py
@@ -536,7 +536,7 @@ def build_device_dict(user_id: str, device_id: str, sk: SigningKey):
     return {
         "user_id": user_id,
         "device_id": device_id,
-        "algorithms": ["m.olm.curve25519-aes-sha256", "m.megolm.v1.aes-sha"],
+        "algorithms": ["m.olm.curve25519-aes-sha2", "m.megolm.v1.aes-sha2"],
         "keys": {
             "curve25519:" + device_id: "curve25519+key",
             key_id(sk): encode_pubkey(sk),