diff options
author | David Robertson <davidr@element.io> | 2022-03-29 11:41:19 +0100 |
---|---|---|
committer | Sean Quah <seanq@element.io> | 2022-04-05 11:04:28 +0100 |
commit | a7293ef16fb3ca9f1234877f1496b30cdeeb01cd (patch) | |
tree | 6465ceb2ca58f9798fbfd18fc9341000aca9d6a1 /tests/replication/_base.py | |
parent | Add note in changelog of non-C type locale causing Synapse to refuse to start... (diff) | |
download | synapse-a7293ef16fb3ca9f1234877f1496b30cdeeb01cd.tar.xz |
Bump `black` and `click` versions (#12320)
Diffstat (limited to '')
-rw-r--r-- | tests/replication/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/replication/_base.py b/tests/replication/_base.py index 9c5df266bd..a0589b6d6a 100644 --- a/tests/replication/_base.py +++ b/tests/replication/_base.py @@ -206,7 +206,7 @@ class BaseStreamTestCase(unittest.HomeserverTestCase): path: bytes = request.path # type: ignore self.assertRegex( path, - br"^/_synapse/replication/get_repl_stream_updates/%s/[^/]+$" + rb"^/_synapse/replication/get_repl_stream_updates/%s/[^/]+$" % (stream_name.encode("ascii"),), ) |