Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkato committed Jan 8, 2024
1 parent 5e39234 commit b0f225c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/core/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func TestFindAssetDefault(t *testing.T) {

err = os.WriteFile(target, []byte{}, os.ModePerm)
if err != nil {
t.Fatal(err)
t.Fatal("Failed to create file", err)
}

found := FindAsset(cfg, "tmp.tmpl")
Expand Down Expand Up @@ -101,7 +101,7 @@ func TestFallbackToDefault(t *testing.T) {

err = os.WriteFile(target, []byte{}, os.ModePerm)
if err != nil {
t.Fatal(err)
t.Fatal("Failed to create file", err)
}

found := FindAsset(cfg, "tmp.tmpl")
Expand Down

0 comments on commit b0f225c

Please sign in to comment.