File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/libraries/System.Text.Json/tests/System.Text.Json.Tests/Serialization Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,6 @@ public static void DeepEquals_DeepJsonDocument(int depth)
230
230
}
231
231
232
232
[ ConditionalFact ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsThreadingSupported ) ) ]
233
- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/105490" , TestRuntimes . Mono ) ]
234
233
public static async Task DeepEquals_TooDeepJsonDocument_ThrowsInsufficientExecutionStackException ( )
235
234
{
236
235
var tcs = new TaskCompletionSource < bool > ( ) ;
@@ -247,7 +246,7 @@ public static async Task DeepEquals_TooDeepJsonDocument_ThrowsInsufficientExecut
247
246
{
248
247
tcs . SetException ( e ) ;
249
248
}
250
- } , maxStackSize : 100_000 ) { IsBackground = true } . Start ( ) ;
249
+ } , maxStackSize : 128 * 1024 ) { IsBackground = true } . Start ( ) ;
251
250
252
251
await tcs . Task ;
253
252
}
You can’t perform that action at this time.
0 commit comments