Skip to content

Commit

Permalink
Merge pull request #698 from atc0005/fix-misc-govet-linting-errors-st…
Browse files Browse the repository at this point in the history
…able-branch

Fix govet linting errors raised by updated linter
  • Loading branch information
atc0005 authored Aug 20, 2024
2 parents a80d8e3 + a403bf8 commit 3b651e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func TestLoadConfigFileTemplate(t *testing.T) {

cwd, err := os.Getwd()
if err != nil {
t.Fatalf(err.Error())
t.Fatal(err.Error())
}
t.Log("Current working directory:", cwd)

Expand All @@ -192,7 +192,7 @@ func TestLoadConfigFileTemplate(t *testing.T) {
} else {
cwd, err := os.Getwd()
if err != nil {
t.Fatalf(err.Error())
t.Fatal(err.Error())
}
t.Log("New working directory:", cwd)
}
Expand Down

0 comments on commit 3b651e4

Please sign in to comment.