mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-17 08:50:14 -04:00
Remove spurious "name" parameter to default_config
this is never set to anything other than "test", and is a source of unnecessary boilerplate.
This commit is contained in:
parent
1fcf9c6f95
commit
28d9d6e8a9
9 changed files with 16 additions and 19 deletions
|
@ -143,8 +143,8 @@ class EndToEndPerspectivesTests(BaseRemoteKeyResourceTestCase):
|
|||
endpoint, to check that the two implementations are compatible.
|
||||
"""
|
||||
|
||||
def default_config(self, *args, **kwargs):
|
||||
config = super().default_config(*args, **kwargs)
|
||||
def default_config(self):
|
||||
config = super().default_config()
|
||||
|
||||
# replace the signing key with our own
|
||||
self.hs_signing_key = signedjson.key.generate_signing_key("kssk")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue