1
0

(We now kick off refreshing remote profiles from the background, so don't always have something to cancel.)

This commit is contained in:
Olivier Wilkinson (reivilibre)
2023-02-28 16:28:09 +00:00
parent fc6c5ae213
commit d4df71d857

View File

@@ -1128,9 +1128,10 @@ class UserDirectoryRemoteProfileTestCase(unittest.HomeserverTestCase):
self.user_dir_handler = hs.get_user_directory_handler()
self.profile_handler = hs.get_profile_handler()
# Cancel the startup call: in the steady-state case we can't rely on it anyway.
assert self.user_dir_handler._refresh_remote_profiles_call_later is not None
self.user_dir_handler._refresh_remote_profiles_call_later.cancel()
if self.user_dir_handler._refresh_remote_profiles_call_later is not None:
# Cancel the startup call: in the steady-state case we can't rely on
# it anyway.
self.user_dir_handler._refresh_remote_profiles_call_later.cancel()
def test_public_rooms_have_profiles_collected(self) -> None:
"""