Fix broken testcase (#8851)

This test was broken by #8565. It doesn't need to set set `self.clock`
here anyway - that is done by `setUp`.
pull/8850/head
Richard van der Hoff 2020-12-01 11:04:57 +00:00 committed by GitHub
parent d1be293f00
commit 09ac0569fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

1
changelog.d/8851.misc Normal file
View File

@ -0,0 +1 @@
Simplify the way the `HomeServer` object caches its internal attributes.

View File

@ -192,7 +192,6 @@ class DeleteMediaByDateSizeTestCase(unittest.HomeserverTestCase):
self.handler = hs.get_device_handler()
self.media_repo = hs.get_media_repository_resource()
self.server_name = hs.hostname
self.clock = hs.clock
self.admin_user = self.register_user("admin", "pass", admin=True)
self.admin_user_tok = self.login("admin", "pass")