summary refs log tree commit diff
path: root/tests/test_rust.py
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-02-08 14:52:37 -0500
committerGitHub <noreply@github.com>2023-02-08 19:52:37 +0000
commit4eed7b2ede2a40aa4ac59eb21d2e13dfffbb6d53 (patch)
treeb3199bd270c76921293cfa80131f15604438d657 /tests/test_rust.py
parentLimit concurrent event creation for a room to avoid state resolution when sen... (diff)
downloadsynapse-4eed7b2ede2a40aa4ac59eb21d2e13dfffbb6d53.tar.xz
Add missing type hints to tests. (#15027)
Diffstat (limited to 'tests/test_rust.py')
-rw-r--r--tests/test_rust.py2
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)