From cf3ada3deb37bc9557fd7bd489750f9cbd3241d9 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 25 Nov 2023 10:34:29 -0600 Subject: [PATCH] Fix benchmarks from recent refactoring (#717) --- bench/raw_ble_plain_text_with_callback.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bench/raw_ble_plain_text_with_callback.py b/bench/raw_ble_plain_text_with_callback.py index a8debb8..7f85c1f 100644 --- a/bench/raw_ble_plain_text_with_callback.py +++ b/bench/raw_ble_plain_text_with_callback.py @@ -18,7 +18,9 @@ class MockConnection(APIConnection): client = APIClient("fake.address", 6052, None) -connection = MockConnection(client._params, lambda expected_disconnect: None, None) +connection = MockConnection( + client._params, lambda expected_disconnect: None, False, None +) def process_incoming_msg():