From 9c867064434a14974a348946936e337cd0ff6c1e Mon Sep 17 00:00:00 2001 From: Alsey Coleman Miller Date: Sat, 25 Aug 2018 17:21:25 -0500 Subject: [PATCH] Reduced unit test logging --- Tests/BluetoothTests/GATTTests.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Tests/BluetoothTests/GATTTests.swift b/Tests/BluetoothTests/GATTTests.swift index d3bc56372..de43f8c68 100644 --- a/Tests/BluetoothTests/GATTTests.swift +++ b/Tests/BluetoothTests/GATTTests.swift @@ -797,7 +797,7 @@ final class GATTTests: XCTestCase { client.discoverAllPrimaryServices { print("Discover All Primary Services") - dump($0) + //dump($0) switch $0 { case let .error(error): @@ -828,7 +828,7 @@ final class GATTTests: XCTestCase { client.discoverAllCharacteristics(of: service) { print("Discover All Characteristics of a Service") - dump($0) + //dump($0) switch $0 { case let .error(error): @@ -857,7 +857,7 @@ final class GATTTests: XCTestCase { client.discoverCharacteristics(of: service, by: uuid) { print("Discover Characteristics by UUID") - dump($0) + //dump($0) switch $0 { case let .error(error): @@ -897,7 +897,7 @@ final class GATTTests: XCTestCase { client.readCharacteristic(characteristic) { print("Read Characteristic") - dump($0) + //dump($0) switch $0 { case let .error(error): @@ -922,7 +922,7 @@ final class GATTTests: XCTestCase { client.writeCharacteristic(characteristic, data: data, reliableWrites: reliableWrites) { print("Write Characteristic") - dump($0) + //dump($0) switch $0 { case let .error(error):