File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class Account:
4747LOW_BANDWIDTH_CMD = "sudo tc qdisc add dev eth0 root tbf rate 1kbit burst 1kbit"
4848REMOVE_TC_CMD = "sudo tc qdisc del dev eth0 root"
4949NUM_CONTACT_REQUESTS = int (os .getenv ("NUM_CONTACT_REQUESTS" , "5" ))
50- NUM_MESSAGES = int (os .getenv ("NUM_MESSAGES" , "1 " ))
51- DELAY_BETWEEN_MESSAGES = int (os .getenv ("NUM_MESSAGES " , "20 " ))
50+ NUM_MESSAGES = int (os .getenv ("NUM_MESSAGES" , "20 " ))
51+ DELAY_BETWEEN_MESSAGES = int (os .getenv ("DELAY_BETWEEN_MESSAGES " , "1 " ))
5252EVENT_SIGNAL_TIMEOUT_SEC = int (os .getenv ("EVENT_SIGNAL_TIMEOUT_SEC" , "4" ))
5353PRIVATE_GROUPS = int (os .getenv ("PRIVATE_GROUPS" , "20" ))
Original file line number Diff line number Diff line change 1212@pytest .mark .usefixtures ("start_2_nodes" )
1313class TestCreatePrivateGroups (StepsCommon ):
1414 def test_create_group_chat_baseline (self ):
15- num_private_groups = NUM_MESSAGES
15+ num_private_groups = PRIVATE_GROUPS
1616 private_groups = []
1717 contact_request_sent = False
1818
Original file line number Diff line number Diff line change 1212@pytest .mark .usefixtures ("start_2_nodes" )
1313class TestPrivateGroupMessages (StepsCommon ):
1414 def test_group_chat_messages_baseline (self ):
15- num_private_groups = NUM_MESSAGES
15+ num_private_groups = PRIVATE_GROUPS
1616 private_groups = []
1717 contact_request_sent = False
1818
You can’t perform that action at this time.
0 commit comments