Skip to content

Commit 2058eba

Browse files
committed
Merge remote-tracking branch 'origin/master' into development
* origin/master: Fix Starscream to version 4.0.4 Remove unused var in SocketAckManagerTest.testManagerTimeoutAck
2 parents 0898078 + d7846b3 commit 2058eba

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let package = Package(
88
.library(name: "SocketIO", targets: ["SocketIO"])
99
],
1010
dependencies: [
11-
.package(url: "https://github.com/daltoniam/Starscream", .upToNextMinor(from: "4.0.0")),
11+
.package(url: "https://github.com/daltoniam/Starscream", .exactItem("4.0.4")),
1212
],
1313
targets: [
1414
.target(name: "SocketIO", dependencies: ["Starscream"]),

Tests/TestSocketIO/SocketAckManagerTest.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ class SocketAckManagerTest : XCTestCase {
2828

2929
func testManagerTimeoutAck() {
3030
let callbackExpection = expectation(description: "Manager should timeout ack with noAck status")
31-
let itemsArray = ["Hi", "ho"]
3231

3332
func callback(_ items: [Any]) {
3433
XCTAssertEqual(items.count, 1, "Timed out ack should have one value")

0 commit comments

Comments
 (0)