diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2019-03-11 18:08:28 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2019-03-11 18:08:28 +0000 |
commit | 802cb5dcf05d99d7bd1873c2e25df1ab6bf9d4d2 (patch) | |
tree | 42003d00f0c6755a04ccd5a893ca818c8df3c310 /tests | |
parent | We're calling different functions now (diff) | |
download | synapse-802cb5dcf05d99d7bd1873c2e25df1ab6bf9d4d2.tar.xz |
Fix syntax error
Diffstat (limited to 'tests')
-rw-r--r-- | tests/handlers/test_typing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py index 8589a2ee9d..75d00c9209 100644 --- a/tests/handlers/test_typing.py +++ b/tests/handlers/test_typing.py @@ -254,7 +254,7 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase): [call('typing_key', 1, rooms=[ROOM_ID])] ) - put_json = self.hs.get_http_client().put_json_with_trailing_slashes_on_404( + put_json = self.hs.get_http_client().put_json_with_trailing_slashes_on_404 put_json.assert_called_once_with( "farm", path="/_matrix/federation/v1/send/1000000", |