Skip to content

Commit 8dab410

Browse files
author
Michał Sośnicki
committed
fix: review
1 parent 3323a3d commit 8dab410

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/unit/internal/retrieval/test_split.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ def test_split_series_attributes(attributes, expected):
173173
groups = list(split_series_attributes(run_attributes))
174174

175175
# then
176-
print(len(groups), [len(g) for g in groups])
177176
assert groups == expected
178177

179178

@@ -197,6 +196,9 @@ def test_split_series_attributes(attributes, expected):
197196
(3, 3 * ATTRIBUTE_DEFINITION_SIZE, 500, [3]),
198197
(3, 4 * ATTRIBUTE_DEFINITION_SIZE, 500, [3]),
199198
(10, 10 * ATTRIBUTE_DEFINITION_SIZE, 3, [3, 3, 3, 1]),
199+
(64, 64 * ATTRIBUTE_DEFINITION_SIZE, 17, [16] * 4),
200+
(64, 64 * ATTRIBUTE_DEFINITION_SIZE, 16, [16] * 4),
201+
(64, 64 * ATTRIBUTE_DEFINITION_SIZE, 15, [15, 15, 15, 15, 4]),
200202
],
201203
)
202204
def test_split_series_attributes_custom_envs(monkeypatch, given_num, query_size_limit, batch_size, expected_nums):

0 commit comments

Comments
 (0)