From d2e42ccb43d19f010df0690a04de709b5fe4c0cd Mon Sep 17 00:00:00 2001 From: Paul Stonebraker Date: Tue, 4 Mar 2025 17:32:09 +0000 Subject: [PATCH] remove print statements in test --- pkg/handlers/ghcapi/mto_shipment_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/handlers/ghcapi/mto_shipment_test.go b/pkg/handlers/ghcapi/mto_shipment_test.go index ef8a07f5b06..8330530f76a 100644 --- a/pkg/handlers/ghcapi/mto_shipment_test.go +++ b/pkg/handlers/ghcapi/mto_shipment_test.go @@ -3695,10 +3695,6 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandler() { // Validate incoming payload suite.NoError(params.Body.Validate(strfmt.Default)) - fmt.Println("params.Body") - fmt.Println(params.Body) - fmt.Println("params.Body.PpmShipment") - fmt.Println(params.Body.PpmShipment) response := handler.Handle(params) suite.IsType(&mtoshipmentops.CreateMTOShipmentOK{}, response) okResponse := response.(*mtoshipmentops.CreateMTOShipmentOK)