diff --git a/libs/core/tests/unit_tests/runnables/test_batch_ordering.py b/libs/core/tests/unit_tests/runnables/test_batch_ordering.py index 5b042f0d1d9..600ace43616 100644 --- a/libs/core/tests/unit_tests/runnables/test_batch_ordering.py +++ b/libs/core/tests/unit_tests/runnables/test_batch_ordering.py @@ -250,8 +250,8 @@ def test_batch_no_race_conditions() -> None: expected = [i * 2 for i in range(50)] assert outputs == expected, "Outputs should be correct and in order" - # Note: The counter might not be 50 due to race conditions in the test runnable itself, - # but the batch processing order should still be preserved + # Note: The counter might not be 50 due to race conditions in the test + # runnable itself, but the batch processing order should still be preserved def test_batch_with_varying_processing_times() -> None: @@ -312,3 +312,4 @@ if __name__ == "__main__": +