From 0bc7f168ed36a7640050e8f80a25c4d8bf0ac50b Mon Sep 17 00:00:00 2001 From: Manodasan Wignarajah Date: Mon, 14 Jun 2021 10:19:36 -0700 Subject: [PATCH] Test occasionally times out in pipeline, increasing timeout. (#875) --- src/Tests/UnitTest/TestComponentCSharp_Tests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tests/UnitTest/TestComponentCSharp_Tests.cs b/src/Tests/UnitTest/TestComponentCSharp_Tests.cs index 7b9bda1bc..fef164485 100644 --- a/src/Tests/UnitTest/TestComponentCSharp_Tests.cs +++ b/src/Tests/UnitTest/TestComponentCSharp_Tests.cs @@ -386,7 +386,7 @@ async Task LookupPorts() [Fact] public void TestReadOnlyDictionaryLookup() { - Assert.True(LookupPorts().Wait(1000)); + Assert.True(LookupPorts().Wait(5000)); } #if NET5_0