Fix build warning (tests do not enable nullable)

This commit is contained in:
Caelan Sayler
2025-05-18 09:55:38 +01:00
committed by Caelan
parent 49d46319b8
commit d05fdd607b
2 changed files with 2 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ public class FakeDownloader : IFileDownloader
{
public string LastUrl { get; private set; }
public string LastLocalFile { get; private set; }
public IDictionary<string, string>? LastHeaders { get; private set; }
public IDictionary<string, string> LastHeaders { get; private set; } = new Dictionary<string, string>();
public byte[] MockedResponseBytes { get; set; } = [];
public bool WriteMockLocalFile { get; set; } = false;