diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-02-08 14:52:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 19:52:37 +0000 |
commit | 4eed7b2ede2a40aa4ac59eb21d2e13dfffbb6d53 (patch) | |
tree | b3199bd270c76921293cfa80131f15604438d657 /tests/test_rust.py | |
parent | Limit concurrent event creation for a room to avoid state resolution when sen... (diff) | |
download | synapse-4eed7b2ede2a40aa4ac59eb21d2e13dfffbb6d53.tar.xz |
Add missing type hints to tests. (#15027)
Diffstat (limited to 'tests/test_rust.py')
-rw-r--r-- | tests/test_rust.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_rust.py b/tests/test_rust.py index 55d8b6b28c..67443b6280 100644 --- a/tests/test_rust.py +++ b/tests/test_rust.py @@ -6,6 +6,6 @@ from tests import unittest class RustTestCase(unittest.TestCase): """Basic tests to ensure that we can call into Rust code.""" - def test_basic(self): + def test_basic(self) -> None: result = sum_as_string(1, 2) self.assertEqual("3", result) |