Skip to content

Commit

Permalink
chore: Remove unnecessary using: use default encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
HofmeisterAn committed Aug 7, 2023
1 parent bc84c72 commit 4e5ed89
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Testcontainers.Kusto/KustoBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected override KustoBuilder Init()
.WithMethod(HttpMethod.Post)
.ForPort(KustoPort)
.ForPath("/v1/rest/mgmt")
.WithContent(() => new StringContent("{\"csl\":\".show cluster\"}", Encoding.UTF8, "application/json"))));
.WithContent(() => new StringContent("{\"csl\":\".show cluster\"}", Encoding.Default, "application/json"))));
}

/// <inheritdoc />
Expand Down
1 change: 0 additions & 1 deletion tests/Testcontainers.Kusto.Tests/Usings.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
global using System.Threading.Tasks;
global using DotNet.Testcontainers.Commons;
global using Kusto.Data;
global using Kusto.Data.Common;
global using Kusto.Data.Net.Client;
global using Xunit;

0 comments on commit 4e5ed89

Please sign in to comment.