Skip to content

Commit

Permalink
fix: dotnet format
Browse files Browse the repository at this point in the history
  • Loading branch information
sammychinedu2ky committed Oct 19, 2023
1 parent fdffe3b commit 47f71d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Consul.Test/CatalogTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);

}

Expand Down
2 changes: 1 addition & 1 deletion Consul/Catalog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public Task<QueryResult<CatalogService[]>> Service(string service, string tag, Q
/// <returns></returns>
public Task<QueryResult<CatalogService[]>> NodesForMeshCapableService(string service, CancellationToken ct = default)
{
return NodesForMeshCapableService(service,QueryOptions.Default, null, ct);
return NodesForMeshCapableService(service, QueryOptions.Default, null, ct);
}

/// <summary>
Expand Down

0 comments on commit 47f71d6

Please sign in to comment.