Skip to content

Commit 9a6a3c4

Browse files
committed
fix: make linter happy
1 parent f768416 commit 9a6a3c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spanner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func (*spanner) paramType() int {
4444
}
4545

4646
func (*spanner) quoteKeyword(str string) string {
47-
return fmt.Sprintf(`%s`, str)
47+
return str
4848
}
4949

5050
func (*spanner) databaseName(q queryable) (string, error) {

testfixtures.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func helperForDialect(dialect string) (helper, error) {
137137
case "clickhouse":
138138
return &clickhouse{}, nil
139139
case "spanner":
140-
return &spanner{}, nil // TODO: return the impl
140+
return &spanner{}, nil
141141
default:
142142
return nil, fmt.Errorf(`testfixtures: unrecognized dialect "%s"`, dialect)
143143
}

0 commit comments

Comments
 (0)