From 8823995648dc06c41fccf42a1b052f547f3b256a Mon Sep 17 00:00:00 2001 From: James Rich Date: Mon, 20 Apr 2026 11:31:31 -0500 Subject: [PATCH] style: spotlessApply formatting Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../meshtastic/core/network/radio/BleRadioTransportTest.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/network/src/commonTest/kotlin/org/meshtastic/core/network/radio/BleRadioTransportTest.kt b/core/network/src/commonTest/kotlin/org/meshtastic/core/network/radio/BleRadioTransportTest.kt index c6eaa21df..840dc214a 100644 --- a/core/network/src/commonTest/kotlin/org/meshtastic/core/network/radio/BleRadioTransportTest.kt +++ b/core/network/src/commonTest/kotlin/org/meshtastic/core/network/radio/BleRadioTransportTest.kt @@ -166,9 +166,7 @@ class BleRadioTransportTest { // Transient disconnects (isPermanent = false) are expected once the failure threshold is hit; // the policy must NEVER signal a permanent disconnect on its own. Only explicit close() // (verified separately by the service layer) may emit isPermanent = true. - verify(mode = VerifyMode.not) { - service.onDisconnect(isPermanent = true, errorMessage = any()) - } + verify(mode = VerifyMode.not) { service.onDisconnect(isPermanent = true, errorMessage = any()) } bleTransport.close() }