Skip to content

Commit

Permalink
fix: make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
kikihakiem committed Aug 29, 2024
1 parent 797939e commit 91a0e40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (*spanner) paramType() int {
}

func (*spanner) quoteKeyword(str string) string {
return fmt.Sprintf(`%s`, str)
return str
}

func (*spanner) databaseName(q queryable) (string, error) {
Expand Down
2 changes: 1 addition & 1 deletion testfixtures.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func helperForDialect(dialect string) (helper, error) {
case "clickhouse":
return &clickhouse{}, nil
case "spanner":
return &spanner{}, nil // TODO: return the impl
return &spanner{}, nil
default:
return nil, fmt.Errorf(`testfixtures: unrecognized dialect "%s"`, dialect)
}
Expand Down

0 comments on commit 91a0e40

Please sign in to comment.