Skip to content

Commit 3f9f201

Browse files
committed
fix test_distribute_first_points_over_learners
1 parent f5f2762 commit 3f9f201

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

adaptive/tests/test_balancing_learner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_distribute_first_points_over_learners(strategy):
3535
learner = BalancingLearner(learners, strategy=strategy)
3636

3737
points = learner.ask(initial_points)[0]
38-
learner.tell_many(points, points)
38+
learner.tell_many(points, [x for i, x in points])
3939

4040
points, _ = learner.ask(100)
4141
i_learner, xs = zip(*points)

0 commit comments

Comments
 (0)