diff --git a/tests/end_to_end/models/participants.py b/tests/end_to_end/models/participants.py index ae0aca5168..8f288ea2d9 100644 --- a/tests/end_to_end/models/participants.py +++ b/tests/end_to_end/models/participants.py @@ -139,8 +139,8 @@ def modify_plan(self, new_rounds=None, num_collaborators=None, require_client_au data["collaborator"]["settings"]["log_memory_usage"] = self.log_memory_usage data["data_loader"]["settings"]["collaborator_count"] = int(self.num_collaborators) - data["network"]["settings"]["require_client_auth"] = not require_client_auth - data["network"]["settings"]["use_tls"] = not use_tls + data["network"]["settings"]["require_client_auth"] = require_client_auth + data["network"]["settings"]["use_tls"] = use_tls with open(self.plan_path, "w+") as write_file: yaml.dump(data, write_file)