mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 23:32:30 +08:00
Chore: Fix SQL related Go variable naming (#28887)
* Chore: Fix variable naming Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
@ -32,10 +32,10 @@ import (
|
||||
// devenv/README.md for setup instructions.
|
||||
func TestMySQL(t *testing.T) {
|
||||
// change to true to run the MySQL tests
|
||||
runMySqlTests := false
|
||||
runMySQLTests := false
|
||||
// runMySqlTests := true
|
||||
|
||||
if !(sqlstore.IsTestDbMySql() || runMySqlTests) {
|
||||
if !(sqlstore.IsTestDbMySQL() || runMySQLTests) {
|
||||
t.Skip()
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user