Skip to content

Commit

Permalink
fixed some spells in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bezzad committed Nov 26, 2023
1 parent 07c0eee commit 5784d0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Downloader.Test/IntegrationTests/DownloadServiceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ public async Task ResumeNotSupportedUrlTest()

// act
await DownloadFileTaskAsync(address); // start the download
await DownloadFileTaskAsync(Package); // resume the downlaod after canceling
await DownloadFileTaskAsync(Package); // resume the downland after canceling

// assert
Assert.True(isCancelled);
Expand Down Expand Up @@ -441,7 +441,7 @@ public async Task ActiveChunksAfterCancelResumeWithNotSupportedUrlTest()

// act
await DownloadFileTaskAsync(address); // start the download
await DownloadFileTaskAsync(Package); // resume the downlaod after canceling
await DownloadFileTaskAsync(Package); // resume the downland after canceling

// assert
Assert.True(isCancelled);
Expand Down Expand Up @@ -631,7 +631,7 @@ public async Task TestPackageStatusAfterCancellation()
}

[Fact]
public async Task TestResumeDownloadImmedietalyAfterCancellationAsync()
public async Task TestResumeDownloadImmediatelyAfterCancellationAsync()
{
// arrange
var completedState = DownloadStatus.None;
Expand Down

0 comments on commit 5784d0a

Please sign in to comment.