diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/index_test.go | 2 | ||||
-rw-r--r-- | view/recipe.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/index_test.go b/view/index_test.go index 583032c..3ab35d5 100644 --- a/view/index_test.go +++ b/view/index_test.go @@ -1,9 +1,9 @@ package view import ( - "testing" "net/http" "net/http/httptest" + "testing" ) func TestIndexRead(t *testing.T) { diff --git a/view/recipe.go b/view/recipe.go index 8236476..d77d771 100644 --- a/view/recipe.go +++ b/view/recipe.go @@ -41,7 +41,7 @@ func RecipeRead(w http.ResponseWriter, r *http.Request) { } } if !is_valid { - http.Error(w, "Unsupported view: " + template, http.StatusBadRequest) + http.Error(w, "Unsupported view: "+template, http.StatusBadRequest) return } |