diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-11-19 16:38:40 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-11-19 16:38:40 +0000 |
commit | c5eabe3143bc3398961ed80da041f28e545386bf (patch) | |
tree | df8ab480f1df3ddb2e05cefb741f10ed990d37fc /tests/handlers | |
parent | Preserve logging context in a few more places, drop the logging context after... (diff) | |
download | synapse-c5eabe3143bc3398961ed80da041f28e545386bf.tar.xz |
replace user_id with sender
Diffstat (limited to 'tests/handlers')
-rw-r--r-- | tests/handlers/test_federation.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/handlers/test_federation.py b/tests/handlers/test_federation.py index e19b073817..3487a090e9 100644 --- a/tests/handlers/test_federation.py +++ b/tests/handlers/test_federation.py @@ -81,8 +81,9 @@ class FederationTestCase(unittest.TestCase): content={"msgtype": u"fooo"}, origin_server_ts=0, event_id="$a:b", + user_id="@a:b", origin="b", - hashes={"sha256":"PvbCLWrTBxnBsSO7/cJ76072ySTCgI/XGadESRAe02M"}, + hashes={"sha256":"AcLrgtUIqqwaGoHhrEvYG1YLDIsVPYJdSRGhkp3jJp8"}, ) self.datastore.persist_event.return_value = defer.succeed(None) |