Skip to content

Commit

Permalink
Update NoiseProtocolTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
rose2221 authored Aug 19, 2024
1 parent f2dcead commit 0d2f7de
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ public async Task Test_ConnectionEstablished_With_PreSelectedMuxer()
//Act
Task ListenTask = proto.ListenAsync(downChannel, channelFactory, listenerContext);
Task DialTask = proto.DialAsync(downChannelFromProtocolPov, channelFactory, peerContext);
await DialTask;
await ListenTask;
await Task.WhenAll(DialTask, ListenTask)

Check failure on line 73 in src/libp2p/Libp2p.Protocols.Noise.Tests/NoiseProtocolTests.cs

View workflow job for this annotation

GitHub Actions / Test

; expected

Check failure on line 73 in src/libp2p/Libp2p.Protocols.Noise.Tests/NoiseProtocolTests.cs

View workflow job for this annotation

GitHub Actions / Test

; expected

//Assert
Assert.That(peerContext.SpecificProtocolRequest.SubProtocol, Is.EqualTo(proto1));
Expand Down

0 comments on commit 0d2f7de

Please sign in to comment.