diff --git a/README.md b/README.md index 1519d1c69f1edcb3edd4cb37125b4c5902d6f992..461fea0a96dae00945a27046aa5779b277d5071a 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,6 @@ setting ACTIVE_PROFILE=local will load the config-local.yml [Config-Datei](./config/config-local.yml) - ``` server: port: Port des HTTP Servers (int) diff --git a/config/config.yml b/config/config.yml index ff630ca060fced93c31b571a7082932488450d81..061360070f657e802f65c191631d273dcf598ded 100755 --- a/config/config.yml +++ b/config/config.yml @@ -1,6 +1,4 @@ server: port: 8082 -grpc: - mock: false logging: level: "INFO" \ No newline at end of file diff --git a/internal/config/config_test.go b/internal/config/config_test.go index 9312466379075c42dbe9b378d56edb0281eb0f1f..d8e2346a336c74fd38f63cb3425ce190b2f364e9 100644 --- a/internal/config/config_test.go +++ b/internal/config/config_test.go @@ -52,7 +52,6 @@ func TestLoadConfig(t *testing.T) { assert.NoError(t, os.Unsetenv(activeProfileParam), "Unsetenv "+activeProfileParam+" should not return an error") expectedConfig := Config{} - expectedConfig.Server.Port = 8082 expectedConfig.Grpc.Url = "localhost:50051" expectedConfig.Logging.Level = "DEBUG"