From 5d96e3debb96bf6ef0539f5ee64c53112994b1f3 Mon Sep 17 00:00:00 2001 From: bezzad Date: Tue, 19 Nov 2024 23:50:12 +0330 Subject: [PATCH] add TODO: check each downloaded byte checksum correction --- src/Downloader.Test/IntegrationTests/DownloadIntegrationTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Downloader.Test/IntegrationTests/DownloadIntegrationTest.cs b/src/Downloader.Test/IntegrationTests/DownloadIntegrationTest.cs index 784873d..5105bea 100644 --- a/src/Downloader.Test/IntegrationTests/DownloadIntegrationTest.cs +++ b/src/Downloader.Test/IntegrationTests/DownloadIntegrationTest.cs @@ -918,5 +918,6 @@ public async Task StorePackageFileWhenDownloadInProgress() Assert.True(package.IsSaveComplete); await using FileStream stream = File.OpenRead(FilePath); Assert.Equal(totalSize, actual: stream.Length); + // TODO: check each downloaded byte checksum correction } } \ No newline at end of file