diff options
author | xengineering <me@xengineering.eu> | 2024-09-11 20:25:31 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-09-11 20:25:54 +0200 |
commit | 54029aac92f17ec87d3ef0bb73fcdac271b209c9 (patch) | |
tree | e73a23c9c556485102efa1212bf24a908359a3ba /model/recipes_test.go | |
parent | 08150821fdb8fd1af23d84e661e61983a16a36b5 (diff) | |
download | ceres-54029aac92f17ec87d3ef0bb73fcdac271b209c9.tar ceres-54029aac92f17ec87d3ef0bb73fcdac271b209c9.tar.zst ceres-54029aac92f17ec87d3ef0bb73fcdac271b209c9.zip |
Apply go fmt to all source files
This applies default Go code style recommendations.
Diffstat (limited to 'model/recipes_test.go')
-rw-r--r-- | model/recipes_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/model/recipes_test.go b/model/recipes_test.go index 13a8b2f..ddd1543 100644 --- a/model/recipes_test.go +++ b/model/recipes_test.go @@ -1,10 +1,10 @@ package model import ( - "testing" - "os" "fmt" + "os" "path/filepath" + "testing" ) func TestRecipesRead(t *testing.T) { @@ -31,7 +31,7 @@ func TestRecipesRead(t *testing.T) { t.Fatalf("Failed to read Recipes: %v\n", err) } - if len(r) != 2 { // TODO this needs to be aligned with model/testrecipes.go + if len(r) != 2 { // TODO this needs to be aligned with model/testrecipes.go t.Fatalf("Expected a list of one recipe but got %d", len(r)) } } |