Skip to content

Commit 9ae1dad

Browse files
committed
fmt
1 parent 9257b92 commit 9ae1dad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests.Vpn.Service/DownloaderTest.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -395,9 +395,9 @@ public void CancelledOuter(CancellationToken ct)
395395
var manager = new Downloader(NullLogger<Downloader>.Instance);
396396
// The "outer" Task should fail.
397397
var smallerCt = new CancellationTokenSource(TimeSpan.FromSeconds(1)).Token;
398-
Assert.ThrowsAsync<TaskCanceledException>(
399-
async () => await manager.StartDownloadAsync(new HttpRequestMessage(HttpMethod.Get, url), destPath,
400-
NullDownloadValidator.Instance, smallerCt));
398+
Assert.ThrowsAsync<TaskCanceledException>(async () => await manager.StartDownloadAsync(
399+
new HttpRequestMessage(HttpMethod.Get, url), destPath,
400+
NullDownloadValidator.Instance, smallerCt));
401401
}
402402

403403
[Test(Description = "Timeout on response body")]

0 commit comments

Comments
 (0)