From 698ae8a3905b6884df7367e45a89c093eea0971d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Tue, 15 Apr 2025 20:16:04 +0200 Subject: [PATCH] fix: do not create two mysql containers --- mysql/mysql_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/mysql/mysql_test.go b/mysql/mysql_test.go index 69a0d74e..6160242c 100644 --- a/mysql/mysql_test.go +++ b/mysql/mysql_test.go @@ -62,12 +62,6 @@ func mustStartMySQL(t testing.TB) *mysql.MySQLContainer { } func Test_MYSQL_New(t *testing.T) { - testStore := newTestStore(t) - defer testStore.Close() - - require.True(t, testStore.db != nil) - require.NoError(t, testStore.Close()) - c := mustStartMySQL(t) dsn, err := c.ConnectionString(context.Background())