diff --git a/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet.go b/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet.go index b975b7ee136..42576fdff18 100644 --- a/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet.go +++ b/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet.go @@ -586,7 +586,7 @@ func FormatSITNumberAndType(i int) string { func FormatPPMWeight(ppm models.PPMShipment) string { if ppm.EstimatedWeight != nil { wtg := FormatWeights(unit.Pound(*ppm.EstimatedWeight)) - return fmt.Sprintf("%s lbs - FINAL", wtg) + return fmt.Sprintf("%s lbs - Estimated", wtg) } return "" } diff --git a/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet_test.go b/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet_test.go index 2808a68d90c..ab5946d478b 100644 --- a/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet_test.go +++ b/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet_test.go @@ -313,7 +313,7 @@ func (suite *ShipmentSummaryWorksheetServiceSuite) TestFormatValuesShipmentSumma suite.Equal("01 - PPM", sswPage1.ShipmentNumberAndTypes) suite.Equal("11-Jan-2019", sswPage1.ShipmentPickUpDates) - suite.Equal("4,000 lbs - FINAL", sswPage1.ShipmentWeights) + suite.Equal("4,000 lbs - Estimated", sswPage1.ShipmentWeights) suite.Equal("Waiting On Customer", sswPage1.ShipmentCurrentShipmentStatuses) suite.Equal("17,500", sswPage1.TotalWeightAllotmentRepeat) @@ -574,7 +574,7 @@ func (suite *ShipmentSummaryWorksheetServiceSuite) TestFormatPPMWeight() { ppm := models.PPMShipment{EstimatedWeight: £s} noWtg := models.PPMShipment{EstimatedWeight: nil} - suite.Equal("1,000 lbs - FINAL", FormatPPMWeight(ppm)) + suite.Equal("1,000 lbs - Estimated", FormatPPMWeight(ppm)) suite.Equal("", FormatPPMWeight(noWtg)) }