summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-03-03 16:51:34 +0000
committerErik Johnston <erik@matrix.org>2020-03-20 15:31:51 +0000
commit8734b75ca8b4b81f5998f5c2ef57dfa0998c66ac (patch)
tree3851721a7f1b1622d3302af2386406f5726e7782 /tests
parentMove stream catchup to workers. (diff)
downloadsynapse-8734b75ca8b4b81f5998f5c2ef57dfa0998c66ac.tar.xz
Remove unused token param from REPLICATE cmd
Diffstat (limited to 'tests')
-rw-r--r--tests/replication/tcp/streams/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/replication/tcp/streams/_base.py b/tests/replication/tcp/streams/_base.py
index b7a61e22f2..f69564cd32 100644
--- a/tests/replication/tcp/streams/_base.py
+++ b/tests/replication/tcp/streams/_base.py
@@ -71,7 +71,7 @@ class BaseStreamTestCase(unittest.HomeserverTestCase):
 
     def replicate_stream(self, stream, token="NOW"):
         """Make the client end a REPLICATE command to set up a subscription to a stream"""
-        self.client.send_command(ReplicateCommand(stream, token))
+        self.client.send_command(ReplicateCommand(stream))
 
 
 class TestReplicationClientHandler(object):