Skip to content

Commit

Permalink
Fix failing test in DaprClientBuilderTest.
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelJCamara committed Oct 24, 2024
1 parent 97e2dcb commit f1e7531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Dapr.AspNetCore.Test/DaprClientBuilderTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// limitations under the License.
// ------------------------------------------------------------------------

using System;
using System;
using System.Text.Json;
using Dapr.Client;
using Grpc.Core;
Expand Down Expand Up @@ -43,7 +43,7 @@ public void DaprClientBuilder_UsesPropertyNameCaseHandlingAsSpecified()
[Fact]
public void DaprClientBuilder_UsesThrowOperationCanceledOnCancellation_ByDefault()
{
var builder = new DaprClientBuilder().Build();
var builder = new DaprClientBuilder();

Assert.True(builder.GrpcChannelOptions.ThrowOperationCanceledOnCancellation);
}
Expand Down

0 comments on commit f1e7531

Please sign in to comment.