diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-08-19 08:25:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 08:25:24 -0400 |
commit | f3fba4914d63bd9ee0573b61c9631b58ec263070 (patch) | |
tree | b9135a29813e24a46f3fb483855372df21d970a9 /tests/replication/tcp | |
parent | Fix validation problem that occurs when a user tries to deactivate their acco... (diff) | |
download | synapse-f3fba4914d63bd9ee0573b61c9631b58ec263070.tar.xz |
Reduce the number of tests using TCP replication. (#13543)
Uses Redis replication in additional test cases (instead of TCP replication). A small step towards dropping TCP replication.
Diffstat (limited to 'tests/replication/tcp')
-rw-r--r-- | tests/replication/tcp/test_handler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/replication/tcp/test_handler.py b/tests/replication/tcp/test_handler.py index e6a19eafd5..1e299d2d67 100644 --- a/tests/replication/tcp/test_handler.py +++ b/tests/replication/tcp/test_handler.py @@ -12,10 +12,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -from tests.replication._base import RedisMultiWorkerStreamTestCase +from tests.replication._base import BaseMultiWorkerStreamTestCase -class ChannelsTestCase(RedisMultiWorkerStreamTestCase): +class ChannelsTestCase(BaseMultiWorkerStreamTestCase): def test_subscribed_to_enough_redis_channels(self) -> None: # The default main process is subscribed to the USER_IP channel. self.assertCountEqual( |