From 4e1f2d34271af0bbe234caf9d32676c33dfd7c9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail?= Date: Mon, 11 Nov 2024 10:23:43 +0300 Subject: [PATCH] Update store_ios.go --- management/server/testutil/store_ios.go | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/management/server/testutil/store_ios.go b/management/server/testutil/store_ios.go index c0aebadc4..edde62f1e 100644 --- a/management/server/testutil/store_ios.go +++ b/management/server/testutil/store_ios.go @@ -3,6 +3,14 @@ package testutil -func CreatePostgresTestContainer() (func(), error) { return func() {}, nil } +func CreatePostgresTestContainer() (func(), error) { + return func() { + // Empty function for Postgres + }, nil +} -func CreateMysqlTestContainer() (func(), error) { return func() {}, nil } +func CreateMysqlTestContainer() (func(), error) { + return func() { + // Empty function for MySQL + }, nil +}