diff --git a/CHANGELOG.md b/CHANGELOG.md index 7943965..0adb303 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.0.3 + +* fix: typo in systemd service file + # v1.0.2 * fix: config unit tests diff --git a/internal/config/config_test.go b/internal/config/config_test.go index dbc725f..87bdd8d 100644 --- a/internal/config/config_test.go +++ b/internal/config/config_test.go @@ -266,7 +266,7 @@ func TestLogConfDir(t *testing.T) { t.Log("Valid directory") { - viper.Set(KeyLogConfDir, filepath.Join("testdata")) + viper.Set(KeyLogConfDir, "testdata") err := logConfDir() if err != nil { t.Fatal("Expected NO error")