Skip to content

Commit

Permalink
lint fx
Browse files Browse the repository at this point in the history
  • Loading branch information
bradmiro authored Dec 4, 2023
1 parent 202b2a8 commit 6d7702b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/blueprint-test/pkg/bq/bq.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func initBq() (error) {
return err
}
fileName := homeDir + "/.bigqueryrc"
_ , err := os.Stat(fileName)
_ , err = os.Stat(fileName)
if os.IsNotExist(err) {
file, err := os.Create(fileName)
if err != nil {
Expand All @@ -111,7 +111,7 @@ func RunCmdE(t testing.TB, cmd string, opts ...cmdOption) (string, error) {
t.Fatal(err)
}

err := initBq()
err = initBq()
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 6d7702b

Please sign in to comment.