From 34e74ffb8ac9394ed0d2ce8d1e92c99954113c4b Mon Sep 17 00:00:00 2001 From: bcmmbaga Date: Tue, 22 Apr 2025 15:10:49 +0300 Subject: [PATCH] fix sonar Signed-off-by: bcmmbaga --- management/server/testutil/store.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/management/server/testutil/store.go b/management/server/testutil/store.go index 705934309..a7381da12 100644 --- a/management/server/testutil/store.go +++ b/management/server/testutil/store.go @@ -105,5 +105,6 @@ func CreatePostgresTestContainer() (func(), string, error) { return cleanup, talksConn, nil } -// noOpCleanup does nothing, used when the container is reused -func noOpCleanup() {} +func noOpCleanup() { + // no-op +}