summary refs log tree commit diff
path: root/tests/rest/utils.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-26 18:57:55 +0100
committerErik Johnston <erik@matrix.org>2014-08-26 18:57:55 +0100
commit93cff1668c5e42d45a8393a1ac59173c8101b375 (patch)
treeb20e984d79e5bc59fedbfac335c97fe349404b14 /tests/rest/utils.py
parentWIP: Completely change how event streaming and pagination work. This reflects... (diff)
parentPepper UT TODOs (diff)
downloadsynapse-93cff1668c5e42d45a8393a1ac59173c8101b375.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into stream_refactor
Diffstat (limited to 'tests/rest/utils.py')
-rw-r--r--tests/rest/utils.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/rest/utils.py b/tests/rest/utils.py

index bc8bff0f1a..590d12f155 100644 --- a/tests/rest/utils.py +++ b/tests/rest/utils.py
@@ -99,14 +99,14 @@ class RestTestCase(unittest.TestCase): defer.returnValue(response) @defer.inlineCallbacks - def send(self, room_id, sender_id, body=None, msg_id=None, tok=None, + def send(self, room_id, body=None, txn_id=None, tok=None, expect_code=200): - if msg_id is None: - msg_id = "m%s" % (str(time.time())) + if txn_id is None: + txn_id = "m%s" % (str(time.time())) if body is None: body = "body_text_here" - path = "/rooms/%s/messages/%s/%s" % (room_id, sender_id, msg_id) + path = "/rooms/%s/send/m.room.message/%s" % (room_id, txn_id) content = '{"msgtype":"m.text","body":"%s"}' % body if tok: path = path + "?access_token=%s" % tok