From 47f71d6c11da038bb69ade21dee860817e470829 Mon Sep 17 00:00:00 2001 From: Samson Amaugo Date: Thu, 19 Oct 2023 09:29:07 +0100 Subject: [PATCH] fix: dotnet format --- Consul.Test/CatalogTest.cs | 2 +- Consul/Catalog.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Consul.Test/CatalogTest.cs b/Consul.Test/CatalogTest.cs index 4853e8e5e..fef218acd 100644 --- a/Consul.Test/CatalogTest.cs +++ b/Consul.Test/CatalogTest.cs @@ -201,7 +201,7 @@ public async Task Catalog_GetNodesForMeshCapableService() var services = await _client.Catalog.NodesForMeshCapableService("redis"); - Assert.True(services.Response.Length==0); + Assert.True(services.Response.Length == 0); } diff --git a/Consul/Catalog.cs b/Consul/Catalog.cs index 5d5d2f351..ee25840d3 100644 --- a/Consul/Catalog.cs +++ b/Consul/Catalog.cs @@ -246,7 +246,7 @@ public Task> Service(string service, string tag, Q /// public Task> NodesForMeshCapableService(string service, CancellationToken ct = default) { - return NodesForMeshCapableService(service,QueryOptions.Default, null, ct); + return NodesForMeshCapableService(service, QueryOptions.Default, null, ct); } ///