Skip to content

Commit 2b59933

Browse files
committed
Longer timeout, use a more stable URL
1 parent 77f3471 commit 2b59933

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/AppInstallerCLIE2ETests/ConfigureCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ public void ConfigureFromTestRepo_DSCv3()
364364
public void ConfigureFindUnitProcessors()
365365
{
366366
// Find all unit processors.
367-
var result = TestCommon.RunAICLICommand("test config-find-unit-processors", string.Empty, timeOut: 120000);
367+
var result = TestCommon.RunAICLICommand("test config-find-unit-processors", string.Empty, timeOut: 300000);
368368
Assert.AreEqual(0, result.ExitCode);
369369
Assert.True(result.StdOut.Contains("Microsoft/OSInfo"));
370370

src/AppInstallerCLITests/Downloader.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ TEST_CASE("HttpStream_ReadLastFullPage", "[HttpStream]")
8282

8383
for (size_t i = 0; i < 10; ++i)
8484
{
85-
stream = GetReadOnlyStreamFromURI("https://cdn.winget.microsoft.com/cache/source2.msix");
85+
stream = GetReadOnlyStreamFromURI("https://aka.ms/win32-x64-user-stable");
8686

8787
stat = { 0 };
8888
REQUIRE(stream->Stat(&stat, STATFLAG_NONAME) == S_OK);
@@ -96,7 +96,7 @@ TEST_CASE("HttpStream_ReadLastFullPage", "[HttpStream]")
9696
}
9797

9898
{
99-
INFO("https://cdn.winget.microsoft.com/cache/source2.msix gave back a 0 byte file");
99+
INFO("https://aka.ms/win32-x64-user-stable gave back a 0 byte file");
100100
REQUIRE(stream);
101101
}
102102

0 commit comments

Comments
 (0)