diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-12-28 08:29:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-28 08:29:35 -0500 |
commit | a4ca770655a6b067468de3d507292ec133fdc5ca (patch) | |
tree | 7b9c0df46e907a59b1ec349e31b972a39f0e26e1 /tests/crypto/test_event_signing.py | |
parent | Move `email` to Server section in config file documentation (#14730) (diff) | |
download | synapse-a4ca770655a6b067468de3d507292ec133fdc5ca.tar.xz |
Add missing type hints to tests. (#14687)
Adds type hints to tests.metrics and tests.crypto.
Diffstat (limited to 'tests/crypto/test_event_signing.py')
-rw-r--r-- | tests/crypto/test_event_signing.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/crypto/test_event_signing.py b/tests/crypto/test_event_signing.py index 8fa710c9dc..2b0972eee8 100644 --- a/tests/crypto/test_event_signing.py +++ b/tests/crypto/test_event_signing.py @@ -33,12 +33,12 @@ HOSTNAME = "domain" class EventSigningTestCase(unittest.TestCase): - def setUp(self): + def setUp(self) -> None: self.signing_key: SigningKey = decode_signing_key_base64( KEY_ALG, KEY_VER, SIGNING_KEY_SEED ) - def test_sign_minimal(self): + def test_sign_minimal(self) -> None: event_dict = { "event_id": "$0:domain", "origin": "domain", @@ -69,7 +69,7 @@ class EventSigningTestCase(unittest.TestCase): "aIbygsSdLOFzvdDjww8zUVKCmI02eP9xtyJxc/cLiBA", ) - def test_sign_message(self): + def test_sign_message(self) -> None: event_dict = { "content": {"body": "Here is the message content"}, "event_id": "$0:domain", |