diff --git a/PiBox.Plugins/Authorization/Keycloak/test/PiBox.Plugins.Authorization.Keycloak.Tests/KeycloakPluginTests.cs b/PiBox.Plugins/Authorization/Keycloak/test/PiBox.Plugins.Authorization.Keycloak.Tests/KeycloakPluginTests.cs index e2ec019..938b37e 100644 --- a/PiBox.Plugins/Authorization/Keycloak/test/PiBox.Plugins.Authorization.Keycloak.Tests/KeycloakPluginTests.cs +++ b/PiBox.Plugins/Authorization/Keycloak/test/PiBox.Plugins.Authorization.Keycloak.Tests/KeycloakPluginTests.cs @@ -134,18 +134,18 @@ public void ConfigureHealthChecks_Use9000ForHealth() public void ConfigureHealthChecks_UseInsecureAsDefaultForHealth() { var config = new KeycloakPluginConfiguration - { - Enabled = true, - Host = "example.com", - Insecure = false, - Port = 8080, - HealthCheck = new HealthCheckConfig - { - Host = "example.com", - Port = 9000, - Prefix = "/health/ready" - } - }; + { + Enabled = true, + Host = "example.com", + Insecure = false, + Port = 8080, + HealthCheck = new HealthCheckConfig + { + Host = "example.com", + Port = 9000, + Prefix = "/health/ready" + } + }; var uriBuilder = new UriBuilder(config.GetHealthCheck()) { Path = config.HealthCheck.Prefix }; uriBuilder.Uri.Should().Be("http://example.com:9000/health/ready"); } @@ -154,19 +154,19 @@ public void ConfigureHealthChecks_UseInsecureAsDefaultForHealth() public void ConfigureHealthChecks_InsecureFalseForcesHttps() { var config = new KeycloakPluginConfiguration - { - Enabled = true, - Host = "example.com", - Insecure = false, - Port = 8080, - HealthCheck = new HealthCheckConfig - { - Host = "example.com", - Port = 9000, - Prefix = "/health/ready", - Insecure = false - } - }; + { + Enabled = true, + Host = "example.com", + Insecure = false, + Port = 8080, + HealthCheck = new HealthCheckConfig + { + Host = "example.com", + Port = 9000, + Prefix = "/health/ready", + Insecure = false + } + }; var uriBuilder = new UriBuilder(config.GetHealthCheck()) { Path = config.HealthCheck.Prefix }; uriBuilder.Uri.Should().Be("https://example.com:9000/health/ready"); }