Skip to content

Commit

Permalink
Make SendFile_NonParallel<T> abstract (dotnet#58003)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonfirsov committed Aug 24, 2021
1 parent 4f4af6b commit 0d3ce71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ public void EndSendFile_NullAsyncResult_Throws()
// Running all cases of GreaterThan2GBFile_SendsAllBytes in parallel may attempt to allocate Min(ProcessorCount, Subclass_Count) * 2GB of disk space
// in extreme cases. Some CI machines may run out of disk space if this happens.
[Collection(nameof(NoParallelTests))]
public class SendFile_NonParallel<T> : SocketTestHelperBase<T> where T : SocketHelperBase, new()
public abstract class SendFile_NonParallel<T> : SocketTestHelperBase<T> where T : SocketHelperBase, new()
{
protected SendFile_NonParallel(ITestOutputHelper output) : base(output)
{
Expand Down

0 comments on commit 0d3ce71

Please sign in to comment.