Skip to content

Commit

Permalink
Fix blank account name
Browse files Browse the repository at this point in the history
  • Loading branch information
grantstephens committed Nov 21, 2022
1 parent 6ca3143 commit 4e0a709
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/commands/logging/bigquery/bigquery_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ func getBigQueryOK(i *fastly.GetBigQueryInput) (*fastly.BigQuery, error) {
Dataset: "raw-logs",
Table: "logs",
User: "[email protected]",
AccountName: "none",
SecretKey: "-----BEGIN RSA PRIVATE KEY-----MIIEogIBAAKCA",
Format: `%h %l %u %t "%r" %>s %b`,
Template: "%Y%m%d",
Expand All @@ -370,7 +371,8 @@ func getBigQueryError(i *fastly.GetBigQueryInput) (*fastly.BigQuery, error) {
return nil, errTest
}

var describeBigQueryOutput = "\n" + strings.TrimSpace(`Account name: `+`
var describeBigQueryOutput = "\n" + strings.TrimSpace(`
Account name: none
Dataset: raw-logs
Format: %h %l %u %t "%r" %>s %b
Format version: 0
Expand Down

0 comments on commit 4e0a709

Please sign in to comment.