We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3293d47 commit c200da2Copy full SHA for c200da2
python/ray/llm/tests/batch/cpu/processor/test_processor_base.py
@@ -473,6 +473,8 @@ def test_backward_compatibility_without_map_kwargs(self):
473
474
ds = ray.data.range(5)
475
result = processor(ds).take_all()
476
+ # Sort results by result value since order is not guaranteed
477
+ result = sorted(result, key=lambda x: x["result"])
478
479
for i, row in enumerate(result):
480
assert row["result"] == i
0 commit comments