File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/SignalR/common/SignalR.Common/test/Internal/Protocol Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 8
8
using System . Text ;
9
9
using Microsoft . AspNetCore . Internal ;
10
10
using Microsoft . AspNetCore . SignalR . Internal ;
11
+ using Microsoft . AspNetCore . Testing ;
11
12
using Xunit ;
12
13
13
14
namespace Microsoft . AspNetCore . SignalR . Common . Tests . Internal . Protocol
@@ -244,7 +245,8 @@ public void GetAndReturnCachedBufferTextWriter()
244
245
Assert . Same ( textWriter1 , textWriter2 ) ;
245
246
}
246
247
247
- [ Fact ]
248
+ [ ConditionalFact ]
249
+ [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/47566" , Queues = "All.OSX" ) ]
248
250
public void WriteMultiByteCharactersToSmallBuffers ( )
249
251
{
250
252
// Test string breakdown (char => UTF-8 hex values):
@@ -306,7 +308,8 @@ public static IEnumerable<object[]> CharAndSegmentSizes
306
308
}
307
309
}
308
310
309
- [ Theory ]
311
+ [ ConditionalTheory ]
312
+ [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/47566" , Queues = "All.OSX" ) ]
310
313
[ MemberData ( nameof ( CharAndSegmentSizes ) ) ]
311
314
public void WriteUnicodeStringAndCharsWithVaryingSegmentSizes ( char singleChar , int segmentSize )
312
315
{
You can’t perform that action at this time.
0 commit comments