diff --git a/management/server/testutil/store.go b/management/server/testutil/store.go index 7eb79fad1..dfa7aaa1a 100644 --- a/management/server/testutil/store.go +++ b/management/server/testutil/store.go @@ -5,7 +5,6 @@ package testutil import ( "context" - "fmt" "os" "time" @@ -16,10 +15,6 @@ import ( "github.com/testcontainers/testcontainers-go/wait" ) -var ( - mysqlContainerConfigPath = "../testdata/mysql.cnf" -) - // CreateMysqlTestContainer creates a new MySQL container for testing. func CreateMysqlTestContainer() (func(), error) { ctx := context.Background() @@ -83,7 +78,5 @@ func CreatePostgresTestContainer() (func(), error) { return nil, err } - fmt.Println("talksConn: ", talksConn) - return cleanUp, os.Setenv("NETBIRD_STORE_ENGINE_POSTGRES_DSN", talksConn) }