mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-22 08:50:35 -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
|
@ -27,8 +27,8 @@ class FrontendProxyTests(HomeserverTestCase):
|
|||
|
||||
return hs
|
||||
|
||||
def default_config(self, name="test"):
|
||||
c = super().default_config(name)
|
||||
def default_config(self):
|
||||
c = super().default_config()
|
||||
c["worker_app"] = "synapse.app.frontend_proxy"
|
||||
return c
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue