Skip to content

Commit 6f70aee

Browse files
committed
Skip flaky test
`AlreadyClosedException` is not consistently thrown. Related to #1572 #1356 #1217 #1218
1 parent 24a3772 commit 6f70aee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

projects/Test/Integration/TestBasicPublish.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,11 @@ public async Task CanNotModifyPayloadAfterPublish()
170170
await _channel.BasicCancelAsync(tag);
171171
}
172172

173-
[Fact]
173+
[SkippableFact]
174174
public async Task TestMaxInboundMessageBodySize()
175175
{
176+
Skip.If(true, "TODO - FUTURE - reinstate test. It is flaky now.");
177+
176178
var tcs = new TaskCompletionSource<bool>(TaskCreationOptions.RunContinuationsAsynchronously);
177179
using var cts = new CancellationTokenSource(WaitSpan);
178180
using CancellationTokenRegistration ctr = cts.Token.Register(() => tcs.SetCanceled());

0 commit comments

Comments
 (0)