fix: forgot to close mysql store in test

This commit is contained in:
Manuel de la Peña
2025-02-18 18:22:21 +01:00
parent c2e5b74f2a
commit fe98837e83

View File

@@ -82,7 +82,7 @@ func Test_MYSQL_New(t *testing.T) {
})
require.True(t, newConfigStore.db != nil)
// no need to close the newConfigStore since the testStore is called in the defer
defer newConfigStore.Close()
}
func Test_MYSQL_Set(t *testing.T) {