Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
Signed-off-by: Chaurasiya, Payal <[email protected]>
  • Loading branch information
payalcha committed Jan 22, 2025
1 parent 6092a65 commit 61d867c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/end_to_end/utils/federation_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def run_federation(fed_obj, install_dependencies=True, with_docker=False):
),
with_docker=with_docker,
)
for participant in fed_obj.collaborators + [fed_obj.aggregator]
for participant in [fed_obj.aggregator] + fed_obj.collaborators
]

# Result will contain response files for all the participants.
Expand Down
2 changes: 1 addition & 1 deletion tests/end_to_end/utils/summary_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def initialize_xml_parser():

# Get the root element
testsuites = tree.getroot()
return testsuites, result_path
return testsuites


def get_aggregated_accuracy(agg_log_file):
Expand Down

0 comments on commit 61d867c

Please sign in to comment.