Skip to content

Commit

Permalink
chore: changelog
Browse files Browse the repository at this point in the history
Signed-off-by: ThibaultFy <50656860+ThibaultFy@users.noreply.github.com>
  • Loading branch information
ThibaultFy committed Jun 26, 2023
1 parent f290240 commit 0e24a06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Changed
- Define test client (`substratest.client.Client`) as child class of `substra.Client` (#205)

- Define test client (`substratest.client.Client`) as child class of `substra.Client` (#205)
([#257](https://github.com/Substra/substra-tests/pull/257))
- Remove `model` and `models` for input and output identifiers in tests. Replace by `shared` instead. ([#261](https://github.com/Substra/substra-tests/pull/261))

## [0.41.0] - 2023-06-12

Expand Down
2 changes: 1 addition & 1 deletion tests/workflows/mnist-fedavg/assets/aggregate_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def forward(self, x):
def aggregate(inputs, outputs, task_properties):
# get layers
inmodels = []
for m_path in inputs["models"]:
for m_path in inputs["shared"]:
inmodels.append(load_model(m_path))

model = inmodels[0]
Expand Down

0 comments on commit 0e24a06

Please sign in to comment.