Skip to content

Commit

Permalink
Change async void System.Text.Json test to be async Task (#44418)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephentoub authored Nov 9, 2020
1 parent 3388b02 commit d4c1c9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ public static async Task NestedJsonFileCircularDependencyTest(int depthFactor)
[InlineData(8192)]
[InlineData(16384)]
[InlineData(65536)]
public static async void FlushThresholdTest(int bufferSize)
public static async Task FlushThresholdTest(int bufferSize)
{
// bufferSize * 0.9 is the threshold size from codebase, subtract 2 for [" characters, then create a
// string containing (threshold - 2) amount of char 'a' which when written into output buffer produces buffer
Expand Down

0 comments on commit d4c1c9a

Please sign in to comment.