summary refs log tree commit diff
path: root/tests/handlers/test_typing.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2014-10-13 11:49:40 +0100
committerMark Haines <mark.haines@matrix.org>2014-10-13 11:49:55 +0100
commit10ef8e6e4bb9d50fd2c636cfbb66d3dd6d6f94e9 (patch)
tree926a1e70d4009d9435d483bf6ca8d834488ef6f0 /tests/handlers/test_typing.py
parentMerge branch 'develop' into server2server_signing (diff)
downloadsynapse-10ef8e6e4bb9d50fd2c636cfbb66d3dd6d6f94e9.tar.xz
SYN-75 sign at the request level rather than the transaction level
Diffstat (limited to 'tests/handlers/test_typing.py')
-rw-r--r--tests/handlers/test_typing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py
index ff40343b8c..064b04c217 100644
--- a/tests/handlers/test_typing.py
+++ b/tests/handlers/test_typing.py
@@ -175,7 +175,7 @@ class TypingNotificationsTestCase(unittest.TestCase):
                         "typing": True,
                     }
                 ),
-                on_send_callback=ANY,
+                json_data_callback=ANY,
             ),
             defer.succeed((200, "OK"))
         )
@@ -226,7 +226,7 @@ class TypingNotificationsTestCase(unittest.TestCase):
                         "typing": False,
                     }
                 ),
-                on_send_callback=ANY,
+                json_data_callback=ANY,
             ),
             defer.succeed((200, "OK"))
         )