diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-10-14 16:44:27 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-10-14 16:44:27 +0100 |
commit | 9aed791fc38790eae6c24e154e7f82ac8509295d (patch) | |
tree | 7a819420e36ad06df40b00023827f8021c1f18af /tests/handlers | |
parent | remove debugging logging for signing requests (diff) | |
download | synapse-9aed791fc38790eae6c24e154e7f82ac8509295d.tar.xz |
SYN-103: Ignore the 'origin' key in received EDUs. Instead take the origin from the transaction itself
Diffstat (limited to 'tests/handlers')
-rw-r--r-- | tests/handlers/test_presence.py | 1 | ||||
-rw-r--r-- | tests/handlers/test_typing.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/handlers/test_presence.py b/tests/handlers/test_presence.py index 15022b8d05..84985a8066 100644 --- a/tests/handlers/test_presence.py +++ b/tests/handlers/test_presence.py @@ -43,6 +43,7 @@ def _expect_edu(destination, edu_type, content, origin="test"): "pdus": [], "edus": [ { + # TODO: SYN-103: Remove "origin" and "destination" keys. "origin": origin, "destination": destination, "edu_type": edu_type, diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py index 064b04c217..b685373deb 100644 --- a/tests/handlers/test_typing.py +++ b/tests/handlers/test_typing.py @@ -33,6 +33,7 @@ def _expect_edu(destination, edu_type, content, origin="test"): "pdus": [], "edus": [ { + # TODO: SYN-103: Remove "origin" and "destination" keys. "origin": origin, "destination": destination, "edu_type": edu_type, |