Skip to content

Commit

Permalink
Additional async timeouts.
Browse files Browse the repository at this point in the history
  • Loading branch information
9swampy committed Nov 19, 2024
1 parent 000b4f2 commit 8fa3082
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions PrimS.Telnet.CiTests/WithDummyByteStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ public void ShouldConnect()
}
}

#if ASYNC
[Fact(Timeout = 2000)]
#else
[Fact]
#endif
public
#if ASYNC
async Task
Expand All @@ -49,7 +53,11 @@ async Task
}
}

#if ASYNC
[Fact(Timeout = 2000)]
#else
[Fact]
#endif
public
#if ASYNC
async Task
Expand Down Expand Up @@ -109,7 +117,11 @@ async Task
}
}

#if ASYNC
[Fact(Timeout = 3000)]
#else
[Fact]
#endif
public
#if ASYNC
async Task
Expand Down Expand Up @@ -140,7 +152,11 @@ async Task
}
}

#if ASYNC
[Fact(Timeout = 5000)]
#else
[Fact]
#endif
public
#if ASYNC
async Task
Expand Down Expand Up @@ -202,7 +218,11 @@ async Task
}
}

#if ASYNC
[Fact(Timeout = 5000)]
#else
[Fact]
#endif
public
#if ASYNC
async Task
Expand All @@ -225,7 +245,11 @@ async Task
}
}

#if ASYNC
[Fact(Timeout = 5000)]
#else
[Fact]
#endif
public
#if ASYNC
async Task
Expand Down

0 comments on commit 8fa3082

Please sign in to comment.