From 79f8adccd532a342db19ef0c545648fa1173221c Mon Sep 17 00:00:00 2001 From: "open-swe[bot]" Date: Tue, 9 Sep 2025 23:47:38 +0000 Subject: [PATCH] Apply patch [skip ci] --- libs/core/tests/unit_tests/runnables/test_batch_ordering.py | 2 ++ 1 file changed, 2 insertions(+) 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 f69e319d1ca..5b042f0d1d9 100644 --- a/libs/core/tests/unit_tests/runnables/test_batch_ordering.py +++ b/libs/core/tests/unit_tests/runnables/test_batch_ordering.py @@ -230,6 +230,7 @@ def test_batch_no_race_conditions() -> None: def invoke( self, input: int, config: Optional[RunnableConfig] = None, **kwargs: Any ) -> int: + del config, kwargs # Unused but required by interface # Simulate race condition scenario current = self.counter time.sleep(0.001) # Give other threads a chance to interfere @@ -310,3 +311,4 @@ if __name__ == "__main__": +