Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Oct 21, 2024
1 parent 04d44ea commit bc802a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Networking/Tests/NetworkingTests/PeerTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ final class PeerTests {
handler: serverHandler,
registration: registration,
configuration: serverConfiguration,
listenAddress: NetAddr(ipAddress: "127.0.0.1", port: 0),
listenAddress: NetAddr(ipAddress: "127.0.0.1", port: 0)!,
alpns: [Data("testalpn".utf8)]
)

Expand Down Expand Up @@ -115,7 +115,7 @@ final class PeerTests {
handler: serverHandler,
registration: registration,
configuration: serverConfiguration,
listenAddress: NetAddr(ipAddress: "127.0.0.1", port: 0),
listenAddress: NetAddr(ipAddress: "127.0.0.1", port: 0)!,
alpns: [Data("testalpn".utf8)]
)

Expand Down

0 comments on commit bc802a0

Please sign in to comment.