From 9abdedf8d1c30095dda8d56193cef0cde8440c12 Mon Sep 17 00:00:00 2001 From: Roman Zipp Date: Mon, 14 Feb 2022 15:02:13 +0100 Subject: [PATCH] Remove debug statement from upload endpoint test --- main_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/main_test.go b/main_test.go index 0ed7112..c9c0ff0 100644 --- a/main_test.go +++ b/main_test.go @@ -139,6 +139,5 @@ func TestUploadRoute(t *testing.T) { assert.Equal(t, 0x1A6, responseRecorder.Code) str, _ := base64.StdEncoding.DecodeString("eyJlcnJvciI6Im5vIG11bHRpcGFydCBib3VuZGFyeSBwYXJhbSBpbiBDb250ZW50LVR5cGUifQ==") assert.JSONEq(t, string(str), responseRecorder.Body.String()) - fmt.Println(responseRecorder.Body.String()) }) }