From 07dc72d19ecb14b2b5564bdab876cf652eae7adb Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Wed, 8 Apr 2026 00:27:18 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20remove=20incorrect=20argu?= =?UTF-8?q?ment=20from=20LoadConfig=20call?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix compilation error - LoadConfig takes no arguments Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe --- pkg/bdd/testserver/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/bdd/testserver/server.go b/pkg/bdd/testserver/server.go index 5792a4c..e59856a 100644 --- a/pkg/bdd/testserver/server.go +++ b/pkg/bdd/testserver/server.go @@ -240,7 +240,7 @@ func (s *Server) GetBaseURL() string { func createTestConfig(port int) *config.Config { // Load actual config to respect environment variables - cfg, err := config.LoadConfig("") + cfg, err := config.LoadConfig() if err != nil { log.Warn().Err(err).Msg("Failed to load config, using defaults") // Fallback to defaults if config loading fails