diff options
author | David Robertson <davidr@element.io> | 2021-11-15 12:59:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 12:59:33 +0000 |
commit | e605e4b8f2447f0b6afa9acc104ae1882a732090 (patch) | |
tree | 73cc0f637dc103eda70a3f6904f993d33bf3e083 /tests/storage | |
parent | Get directory db file to pass mypy (#11339) (diff) | |
download | synapse-e605e4b8f2447f0b6afa9acc104ae1882a732090.tar.xz |
Database storage profile passes mypy (#11342)
It already seems to pass mypy. I wonder what changed, given that it was on the exclusion list. So this commit consists of me ensuring `--disallow-untyped-defs` passes and a minor fixup to a function that returned either `True` or `None`.
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_profile.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/storage/test_profile.py b/tests/storage/test_profile.py index a1ba99ff14..d37736edf8 100644 --- a/tests/storage/test_profile.py +++ b/tests/storage/test_profile.py @@ -11,19 +11,22 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +from twisted.test.proto_helpers import MemoryReactor +from synapse.server import HomeServer from synapse.types import UserID +from synapse.util import Clock from tests import unittest class ProfileStoreTestCase(unittest.HomeserverTestCase): - def prepare(self, reactor, clock, hs): + def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None: self.store = hs.get_datastore() self.u_frank = UserID.from_string("@frank:test") - def test_displayname(self): + def test_displayname(self) -> None: self.get_success(self.store.create_profile(self.u_frank.localpart)) self.get_success( @@ -48,7 +51,7 @@ class ProfileStoreTestCase(unittest.HomeserverTestCase): self.get_success(self.store.get_profile_displayname(self.u_frank.localpart)) ) - def test_avatar_url(self): + def test_avatar_url(self) -> None: self.get_success(self.store.create_profile(self.u_frank.localpart)) self.get_success( |