From a1702ea9266d23e119b85d2ae23082831df454e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Thu, 23 Mar 2023 00:04:56 -0600 Subject: [PATCH] Update modules/mysql/mysql.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Manuel de la Peña --- modules/mysql/mysql.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mysql/mysql.go b/modules/mysql/mysql.go index 0c2aa1178b..5662970406 100644 --- a/modules/mysql/mysql.go +++ b/modules/mysql/mysql.go @@ -21,7 +21,7 @@ type MySQLContainer struct { database string } -type PostgresContainerOption func(req *testcontainers.ContainerRequest) +type MySQLContainerOption func(req *testcontainers.ContainerRequest) // StartContainer creates an instance of the MySQL container type func StartContainer(ctx context.Context, image string, opts ...PostgresContainerOption) (*MySQLContainer, error) {