Update test/WireMock.Net.Tests/WebSockets/WebSocketIntegrationTests.cs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Stef Heyenrath
2026-04-18 08:20:58 +02:00
committed by GitHub
parent fece70a9d2
commit 18d6b4958c

View File

@@ -750,8 +750,6 @@ public class WebSocketIntegrationTests(ITestOutputHelper output, ITestContextAcc
{
await client.SendAsync(testMessage, cancellationToken: _ct);
await Task.Delay(500, _ct);
var received = await client.ReceiveAsTextAsync(cancellationToken: _ct);
received.Should().Be(testMessage, $"message '{testMessage}' should be proxied and echoed back");
}