diff options
author | Richard van der Hoff <richard@matrix.org> | 2019-01-23 11:25:36 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2019-01-23 11:25:36 +0000 |
commit | 6b574f3df7ec9ff2b92e85b34f055b50cd318930 (patch) | |
tree | 73ef82eed1482f9e81697e5ed2452cb836b5aaee /tests | |
parent | Add a test for MatrixFederationAgent (diff) | |
download | synapse-6b574f3df7ec9ff2b92e85b34f055b50cd318930.tar.xz |
fix python2 test failure
Diffstat (limited to 'tests')
-rw-r--r-- | tests/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server.py b/tests/server.py index 3a4aa55645..ed2a046ae6 100644 --- a/tests/server.py +++ b/tests/server.py @@ -342,7 +342,7 @@ def get_clock(): return (clock, hs_clock) -@attr.s +@attr.s(cmp=False) class FakeTransport(object): """ A twisted.internet.interfaces.ITransport implementation which sends all its data |