Skip to content

Commit f1e7531

Browse files
committed
Fix failing test in DaprClientBuilderTest.
1 parent 97e2dcb commit f1e7531

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Dapr.AspNetCore.Test/DaprClientBuilderTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// limitations under the License.
1212
// ------------------------------------------------------------------------
1313

14-
using System;
14+
using System;
1515
using System.Text.Json;
1616
using Dapr.Client;
1717
using Grpc.Core;
@@ -43,7 +43,7 @@ public void DaprClientBuilder_UsesPropertyNameCaseHandlingAsSpecified()
4343
[Fact]
4444
public void DaprClientBuilder_UsesThrowOperationCanceledOnCancellation_ByDefault()
4545
{
46-
var builder = new DaprClientBuilder().Build();
46+
var builder = new DaprClientBuilder();
4747

4848
Assert.True(builder.GrpcChannelOptions.ThrowOperationCanceledOnCancellation);
4949
}

0 commit comments

Comments
 (0)