From 7bbad9a837801fb35e65b28d1eef469c22c40c25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Thu, 19 Sep 2024 23:55:26 +0200 Subject: [PATCH] fix: swap values in mysql constants --- mysql/mysql_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql/mysql_test.go b/mysql/mysql_test.go index 91aae00f..0cfc1197 100644 --- a/mysql/mysql_test.go +++ b/mysql/mysql_test.go @@ -15,8 +15,8 @@ const ( // mysqlImage is the default image used for running MySQL in tests. mysqlImage = "docker.io/mysql:9" mysqlImageEnvVar string = "TEST_MYSQL_IMAGE" - mysqlUser string = "password" - mysqlPass string = "username" + mysqlUser string = "username" + mysqlPass string = "password" mysqlDatabase string = "fiber" )