Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ let package = Package(
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/swift-libp2p/swift-libp2p.git", .upToNextMinor(from: "0.3.0")),
.package(url: "https://github.com/swift-libp2p/swift-libp2p.git", .upToNextMinor(from: "0.3.3")),

// Test dependencies
.package(url: "https://github.com/swift-libp2p/swift-libp2p-noise.git", .upToNextMinor(from: "0.2.0")),
Expand Down
6 changes: 3 additions & 3 deletions Tests/LibP2PPubSubTests/LibP2PPubSubFloodsubTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ final class LibP2PPubSubFloodsubTests {
/// ```
@Test(.externalIntegrationTestsEnabled, .timeLimit(.minutes(1)))
func testFloodsubJSInterop() async throws {
let app = try Application(.testing, peerID: PeerID(.Ed25519))
let app = try await Application.make(.testing, peerID: PeerID(.Ed25519))
app.logger.logLevel = .trace

/// Configure our networking stack!
Expand Down Expand Up @@ -614,7 +614,7 @@ final class LibP2PPubSubFloodsubTests {

@Test(.externalIntegrationTestsEnabled, .timeLimit(.minutes(1)))
func testExternalPing() async throws {
let app = try Application(.testing, peerID: PeerID(.Ed25519))
let app = try await Application.make(.testing, peerID: PeerID(.Ed25519))
app.logger.logLevel = .trace

/// Configure our networking stack!
Expand All @@ -639,7 +639,7 @@ final class LibP2PPubSubFloodsubTests {

@Test(.externalIntegrationTestsEnabled, .timeLimit(.minutes(1)))
func testExternalFloodsubConnections() async throws {
let app = try Application(.testing, peerID: PeerID(.Ed25519))
let app = try await Application.make(.testing, peerID: PeerID(.Ed25519))
app.logger.logLevel = .trace

/// Configure our networking stack!
Expand Down
2 changes: 1 addition & 1 deletion Tests/LibP2PPubSubTests/LibP2PPubSubGossipsubTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ final class LibP2PPubSubGossipsubTests {
/// - Note: The JS example uses the `concatFromAndSequenceFields` messageID function
@Test(.externalIntegrationTestsEnabled)
func testGossipsubJSInterop() async throws {
let app = try Application(.testing, peerID: PeerID(.Ed25519))
let app = try await Application.make(.testing, peerID: PeerID(.Ed25519))
app.logger.logLevel = .trace

/// Configure our networking stack!
Expand Down
4 changes: 2 additions & 2 deletions Tests/LibP2PPubSubTests/LibP2PPubSubTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import Testing
struct LibP2PPubSubTests {

@Test func testAppConfiguration_Floodsub() async throws {
let app = try Application(.testing, peerID: PeerID(.Ed25519))
let app = try await Application.make(.testing, peerID: PeerID(.Ed25519))
app.logger.logLevel = .trace

/// Configure our networking stack!
Expand All @@ -44,7 +44,7 @@ struct LibP2PPubSubTests {
}

@Test func testAppConfiguration_Gossipsub() async throws {
let app = try Application(.testing, peerID: PeerID(.Ed25519))
let app = try await Application.make(.testing, peerID: PeerID(.Ed25519))
app.logger.logLevel = .trace

/// Configure our networking stack!
Expand Down
Loading