File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ environment:
3030
3131# tools we need for bulding/testing/deploying
3232install :
33- - dotnet --info
33+ - dotnet --version
3434 - choco install gitversion.portable -y
3535 - nuget update -self
3636 - choco install docfx -y
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class DhtApiTest
1818 public async Task FindPeer ( )
1919 {
2020 var ipfs = TestFixture . Ipfs ;
21- var cts = new CancellationTokenSource ( TimeSpan . FromSeconds ( 30 ) ) ;
21+ var cts = new CancellationTokenSource ( TimeSpan . FromMinutes ( 2 ) ) ;
2222 var mars = await ipfs . Dht . FindPeerAsync ( "QmSoLMeWqB7YGVLJN3pNLQpmmEk35v6wYtsMGLzSr5QBU3" , cts . Token ) ;
2323 Assert . IsNotNull ( mars ) ;
2424 }
@@ -27,7 +27,7 @@ public async Task FindPeer()
2727 public async Task FindProviders ( )
2828 {
2929 var ipfs = TestFixture . Ipfs ;
30- var cts = new CancellationTokenSource ( TimeSpan . FromSeconds ( 30 ) ) ;
30+ var cts = new CancellationTokenSource ( TimeSpan . FromMinutes ( 2 ) ) ;
3131 var providers = await ipfs . Dht . FindProvidersAsync ( helloWorldID , 1 , cts . Token ) ;
3232 Assert . AreNotEqual ( 0 , providers . Count ( ) ) ;
3333 }
You can’t perform that action at this time.
0 commit comments