diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-03-11 17:44:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 17:44:03 +0000 |
commit | 290552fd836f4ae2dc1d893a7f72f7fff85365d3 (patch) | |
tree | cf4d99ab9288d926746100d3664855043c03fac1 /tests | |
parent | Merge pull request #4847 from matrix-org/erikj/fix_stacktrace_keyring (diff) | |
download | synapse-290552fd836f4ae2dc1d893a7f72f7fff85365d3.tar.xz |
Make federation endpoints more tolerant of trailing slashes for some endpoints (#4793)
Server side of a solution towards #3622.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/handlers/test_typing.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py index 13486930fb..b8e97390de 100644 --- a/tests/handlers/test_typing.py +++ b/tests/handlers/test_typing.py @@ -180,7 +180,7 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase): put_json = self.hs.get_http_client().put_json put_json.assert_called_once_with( "farm", - path="/_matrix/federation/v1/send/1000000/", + path="/_matrix/federation/v1/send/1000000", data=_expect_edu_transaction( "m.typing", content={ @@ -201,7 +201,7 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase): (request, channel) = self.make_request( "PUT", - "/_matrix/federation/v1/send/1000000/", + "/_matrix/federation/v1/send/1000000", _make_edu_transaction_json( "m.typing", content={ @@ -257,7 +257,7 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase): put_json = self.hs.get_http_client().put_json put_json.assert_called_once_with( "farm", - path="/_matrix/federation/v1/send/1000000/", + path="/_matrix/federation/v1/send/1000000", data=_expect_edu_transaction( "m.typing", content={ |