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 c06c278 commit 7deafdc
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Tests/BluetoothTests/GATTTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -640,15 +640,11 @@ final class GATTTests: XCTestCase {
// server
let serverSocket = TestL2CAPSocket()
let server = GATTServer(socket: serverSocket, maximumPreparedWrites: .max)
server.log = { print("GATT Server: " + $0) }
server.connection.log = { print("Server ATT: " + $0) }
server.database = database

// client
let clientSocket = TestL2CAPSocket()
let client = GATTClient(socket: clientSocket)
client.log = { print("GATT Client: " + $0) }
client.connection.log = { print("Client ATT: " + $0) }

clientSocket.target = serverSocket
serverSocket.target = clientSocket // weak references
Expand Down

0 comments on commit 7deafdc

Please sign in to comment.