summary refs log tree commit diff
path: root/tests/utils.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2019-07-24 13:32:41 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2019-07-24 13:32:41 +0100
commit70b6d1dfd6a7ae18042972fd3a1de2cb2f2a0fe9 (patch)
treeedd1196b9863e8f05fcab289f5f221b9b90e98e3 /tests/utils.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentFix servlet metric names (#5734) (diff)
downloadsynapse-70b6d1dfd6a7ae18042972fd3a1de2cb2f2a0fe9.tar.xz
Merge branch 'release-v1.2.0' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py

index 8a94ce0b47..99a3deae21 100644 --- a/tests/utils.py +++ b/tests/utils.py
@@ -471,7 +471,7 @@ class MockHttpResource(HttpServer): raise KeyError("No event can handle %s" % path) - def register_paths(self, method, path_patterns, callback): + def register_paths(self, method, path_patterns, callback, servlet_name): for path_pattern in path_patterns: self.callbacks.append((method, path_pattern, callback))