Skip to content

Commit

Permalink
remove not
Browse files Browse the repository at this point in the history
Signed-off-by: Chaurasiya, Payal <[email protected]>
  • Loading branch information
payalcha committed Nov 22, 2024
1 parent 6cb3e5c commit d85bc9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/end_to_end/models/participants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d85bc9f

Please sign in to comment.