Skip to content

Commit

Permalink
Reduced unit test logging
Browse files Browse the repository at this point in the history
  • Loading branch information
colemancda committed Aug 25, 2018
1 parent 7deafdc commit 9c86706
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Tests/BluetoothTests/GATTTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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):
Expand Down Expand Up @@ -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):
Expand Down Expand Up @@ -897,7 +897,7 @@ final class GATTTests: XCTestCase {
client.readCharacteristic(characteristic) {

print("Read Characteristic")
dump($0)
//dump($0)

switch $0 {
case let .error(error):
Expand All @@ -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):
Expand Down

0 comments on commit 9c86706

Please sign in to comment.