Skip to content
Prev Previous commit
Next Next commit
Fix failing test in DaprClientBuilderTest.
Signed-off-by: Rafael Camara <rafaelcamarac@gmail.com>
  • Loading branch information
RafaelJCamara committed Oct 24, 2024
commit 4a6eeadbdedad175cd63daf2253098355d07a801
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