Skip to content

Commit 0474674

Browse files
committed
Merge callout descriptions
This commit merges the callout descriptions onto one line so that callout extraction generates only one callout number after the source block
1 parent be75e14 commit 0474674

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Tests/Tests/ClientConcepts/ConnectionPooling/Exceptions/UnexpectedExceptions.doc.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ [U] public async Task WillFailOverKnowConnectionExceptionButNotUnexpected()
7272
var audit = new Auditor(() => VirtualClusterWith
7373
.Nodes(10)
7474
#if DOTNETCORE
75-
.ClientCalls(r => r.OnPort(9200).FailAlways(new System.Net.Http.HttpRequestException("recover"))) // <1> calls on 9200 set up to throw a `HttpRequestException`
75+
.ClientCalls(r => r.OnPort(9200).FailAlways(new System.Net.Http.HttpRequestException("recover"))) // <1> calls on 9200 set up to throw a `HttpRequestException` or a `WebException`
7676
#else
77-
.ClientCalls(r => r.OnPort(9200).FailAlways(new System.Net.WebException("recover"))) // <1> calls on 9200 set up to throw a `HttpRequestException`
77+
.ClientCalls(r => r.OnPort(9200).FailAlways(new System.Net.WebException("recover"))) // <1>
7878
#endif
7979
.ClientCalls(r => r.OnPort(9201).FailAlways(new Exception("boom!"))) // <2> calls on 9201 set up to throw an `Exception`
8080
.StaticConnectionPool()

0 commit comments

Comments
 (0)