From d4593f0175dbeeb88175688efbbec0e85fa26424 Mon Sep 17 00:00:00 2001 From: Sergey Zhemoytel Date: Wed, 8 Jan 2025 14:45:29 +0300 Subject: [PATCH] update test --- test/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/main.go b/test/main.go index 4bc1335..b6192c6 100644 --- a/test/main.go +++ b/test/main.go @@ -45,6 +45,7 @@ func NewMockServer() *MockServer { return } if contentType := r.Header.Get("Content-Type"); !strings.Contains(contentType, "multipart/form-data") { + log.Printf("Invalid Content-Type: %s", contentType) w.WriteHeader(http.StatusBadRequest) return }