This commit is contained in:
Lukas Schmidt 2015-09-03 14:06:09 +02:00
parent e238293711
commit 110a6748ab
2 changed files with 1 additions and 5 deletions

View File

@ -14,10 +14,7 @@ class AbstractSocketTest: XCTestCase {
var socket:SocketIOClient! var socket:SocketIOClient!
var testKind:TestKind? var testKind:TestKind?
override func tearDown() {
super.tearDown()
socket.close(fast: false)
}
func openConnection() { func openConnection() {
weak var expection = self.expectationWithDescription("connect") weak var expection = self.expectationWithDescription("connect")

View File

@ -25,7 +25,6 @@ class SocketEmitTest: AbstractSocketTest {
} }
override func tearDown() { override func tearDown() {
socket.close(fast: false)
super.tearDown() super.tearDown()
} }