We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5be741a commit 61d8fcbCopy full SHA for 61d8fcb
tests/test_carrier_account.py
@@ -1,5 +1,3 @@
1
-from unittest.mock import patch
2
-
3
import pytest
4
from easypost.errors.api.api_error import ApiError
5
from easypost.models import CarrierAccount
@@ -124,7 +122,7 @@ def test_carrier_account_update_ups(prod_client):
124
122
125
123
carrier_account = prod_client.carrier_account.create(**params)
126
127
- updated_carrier_account = prod_client.carrier_account.update(carrier_account.id, account_number="987654321")
+ prod_client.carrier_account.update(carrier_account.id, account_number="987654321")
128
129
assert isinstance(carrier_account, CarrierAccount)
130
assert str.startswith(carrier_account.id, "ca_")
0 commit comments