Skip to content

Commit

Permalink
chore(google-api-go-generator): replace literal with const (#2363)
Browse files Browse the repository at this point in the history
  • Loading branch information
quartzmo committed Jan 25, 2024
1 parent d266978 commit ddb3a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google-api-go-generator/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ func (a *API) GenerateCode() ([]byte, error) {
if mtlsBase := a.mtlsAPIBaseURL(); mtlsBase != "" {
pn("const mtlsBasePath = %q", mtlsBase)
}
pn("const defaultUniverseDomain = \"googleapis.com\"")
pn("const defaultUniverseDomain = %q", googleDefaultUniverse)

a.generateScopeConstants()
a.PopulateSchemas()
Expand Down

0 comments on commit ddb3a12

Please sign in to comment.