small fix

This commit is contained in:
Florin Barbu 2024-07-10 20:49:25 +03:00
parent 87b46cd976
commit 96bb120d21
No known key found for this signature in database
GPG Key ID: 593D6DBC6D9E5095
1 changed files with 3 additions and 3 deletions

View File

@ -50,19 +50,19 @@ class TestCommunityMessages(StepsCommon):
)
def test_community_messages_with_latency(self):
self.create_communities(1)
self.setup_community_nodes()
self.join_created_communities()
with self.add_latency():
self.test_community_messages_baseline()
def test_community_messages_with_packet_loss(self):
self.create_communities(1)
self.setup_community_nodes()
self.join_created_communities()
with self.add_packet_loss():
self.test_community_messages_baseline()
def test_community_messages_with_low_bandwith(self):
self.create_communities(1)
self.setup_community_nodes()
self.join_created_communities()
with self.add_low_bandwith():
self.test_community_messages_baseline()