Skip to content

Commit

Permalink
test(materialize-firebolt): Fix driver spec snapshot test
Browse files Browse the repository at this point in the history
  • Loading branch information
ptiurin authored and williamhbaker committed Nov 25, 2024
1 parent 3fdcc30 commit 9233b79
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions materialize-firebolt/.snapshots/TestDriverSpec
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"$schema": "http://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/estuary/connectors/materialize-firebolt/config",
"properties": {
"username": {
"client_id": {
"type": "string",
"title": "Username",
"description": "Firebolt username.",
"title": "Client ID",
"description": "ID of your Firebolt service account.",
"order": 0
},
"password": {
"client_secret": {
"type": "string",
"title": "Password",
"description": "Firebolt password.",
"title": "Client Secret",
"description": "Secret key of your Firebolt service account.",
"order": 1,
"secret": true
},
Expand Down Expand Up @@ -69,8 +69,8 @@
},
"type": "object",
"required": [
"username",
"password",
"client_id",
"client_secret",
"account_name",
"engine_name",
"database",
Expand Down
2 changes: 1 addition & 1 deletion materialize-firebolt/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (config) GetFieldDocString(fieldName string) string {
return "Engine Name to process your queries."
case "Database":
return "Name of the Firebolt database."
case "ClientID":
case "ClientId":
return "ID of your Firebolt service account."
case "ClientSecret":
return "Secret key of your Firebolt service account."
Expand Down

0 comments on commit 9233b79

Please sign in to comment.