diff --git a/tests/tracker_test.go b/tests/tracker_test.go index 7dbfd03..aa274aa 100644 --- a/tests/tracker_test.go +++ b/tests/tracker_test.go @@ -2,7 +2,6 @@ package easypost_test import ( "reflect" - "strconv" "strings" "github.com/EasyPost/easypost-go/v4" @@ -63,26 +62,6 @@ func (c *ClientTests) TestTrackerAll() { } } -func (c *ClientTests) TestTrackerCreateList() { - client := c.TestClient() - assert, require := c.Assert(), c.Require() - - trackingCodeParam := make(map[string]interface{}) - trackingCodes := []string{"EZ1000000001", "EZ1000000002", "EZ1000000003"} - - for i := range trackingCodes { - trackingCodeParam[strconv.Itoa(i)] = map[string]string{ - "tracking_code": trackingCodes[i], - } - } - - response, err := client.CreateTrackerList(trackingCodeParam) - require.NoError(err) - - // This endpoint returns nothing, so we assert the function returns true - assert.True(response) -} - func (c *ClientTests) TestTrackersGetNextPage() { client := c.TestClient() assert, require := c.Assert(), c.Require()