Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 7e9647c

Browse files
Another test fix
1 parent c60df30 commit 7e9647c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/IntegrationTests/Download/DownloadTaskTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public async Task TestDownloadTask()
3232
Logger.Trace("File size {0} bytes", downloadPathBytes.Length);
3333

3434
var md5Sum = fileSystem.CalculateFileMD5(downloadPath);
35-
md5Sum.Should().Be(TestDownloadMD5.ToUpperInvariant());
35+
md5Sum.Should().Be(TestDownloadMD5);
3636

3737
var random = new Random();
3838
var takeCount = random.Next(downloadPathBytes.Length);
@@ -49,7 +49,7 @@ public async Task TestDownloadTask()
4949
Logger.Trace("File size {0} Bytes", downloadHalfPathBytes.Length);
5050

5151
md5Sum = fileSystem.CalculateFileMD5(downloadPath);
52-
md5Sum.Should().Be(TestDownloadMD5.ToUpperInvariant());
52+
md5Sum.Should().Be(TestDownloadMD5);
5353
}
5454

5555
[Test]

0 commit comments

Comments
 (0)