mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-05 14:18:55 +01:00
Rename MockedDatastoreTestCase to MockedDatastorePresenceTestCase since it is still presence-specific
This commit is contained in:
parent
cbb10879cb
commit
3a243c53f4
1 changed files with 3 additions and 3 deletions
|
@ -188,7 +188,7 @@ class PresenceTestCase(unittest.TestCase):
|
|||
self.u_cabbage = hs.parse_userid("@cabbage:elsewhere")
|
||||
|
||||
|
||||
class MockedDatastoreTestCase(PresenceTestCase):
|
||||
class MockedDatastorePresenceTestCase(PresenceTestCase):
|
||||
def make_datastore_mock(self):
|
||||
datastore = Mock(spec=[
|
||||
# Bits that Federation needs
|
||||
|
@ -605,7 +605,7 @@ class PresenceInvitesTestCase(PresenceTestCase):
|
|||
], presence)
|
||||
|
||||
|
||||
class PresencePushTestCase(MockedDatastoreTestCase):
|
||||
class PresencePushTestCase(MockedDatastorePresenceTestCase):
|
||||
""" Tests steady-state presence status updates.
|
||||
|
||||
They assert that presence state update messages are pushed around the place
|
||||
|
@ -990,7 +990,7 @@ class PresencePushTestCase(MockedDatastoreTestCase):
|
|||
put_json.await_calls()
|
||||
|
||||
|
||||
class PresencePollingTestCase(MockedDatastoreTestCase):
|
||||
class PresencePollingTestCase(MockedDatastorePresenceTestCase):
|
||||
""" Tests presence status polling. """
|
||||
|
||||
# For this test, we have three local users; apple is watching and is
|
||||
|
|
Loading…
Reference in a new issue