Skip to content

Commit d708511

Browse files
committed
fixed linter issues
1 parent be6d82d commit d708511

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/slo/gorm/legacy/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"slo/internal/workers"
1919
)
2020

21-
func init() {
21+
func init() { //nolint:gochecknoinits
2222
os.Setenv("YDB_DATABASE_SQL_OVER_QUERY_SERVICE", "false")
2323
}
2424

tests/slo/gorm/propose/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"slo/internal/workers"
1919
)
2020

21-
func init() {
21+
func init() { //nolint:gochecknoinits
2222
os.Setenv("YDB_DATABASE_SQL_OVER_QUERY_SERVICE", "true")
2323
}
2424

tests/slo/xorm/legacy/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"slo/internal/workers"
1919
)
2020

21-
func init() {
21+
func init() { //nolint:gochecknoinits
2222
os.Setenv("YDB_DATABASE_SQL_OVER_QUERY_SERVICE", "false")
2323
}
2424

tests/slo/xorm/propose/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"slo/internal/workers"
1919
)
2020

21-
func init() {
21+
func init() { //nolint:gochecknoinits
2222
os.Setenv("YDB_DATABASE_SQL_OVER_QUERY_SERVICE", "true")
2323
}
2424

0 commit comments

Comments
 (0)