Skip to content

Commit f91f6e5

Browse files
committed
Linting
1 parent 0e31c46 commit f91f6e5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/shipments/test_tracking_labels.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ def test_no_top_level_containers(client):
3636
def test_user_address(client):
3737
"""Should return include to/from address if these are available"""
3838
responses.get(
39-
f"{Config.shipping_service.backend_url}/api/shipment_requests/1/shipments/TO_FACILITY", json=SHIPMENT_REQUEST_CONTENTS
39+
f"{Config.shipping_service.backend_url}/api/shipment_requests/1/shipments/TO_FACILITY",
40+
json=SHIPMENT_REQUEST_CONTENTS,
4041
)
4142

4243
responses.get(f"{Config.shipping_service.backend_url}/api/shipments/1", json=SHIPMENT_CONTENTS, status=200)
@@ -50,7 +51,8 @@ def test_user_address(client):
5051
def test_user_address_no_consignee(client):
5152
"""Should raise exception if shipment service returns 'from' address but no 'to' address"""
5253
responses.get(
53-
f"{Config.shipping_service.backend_url}/api/shipment_requests/1/shipments/TO_FACILITY", json=SHIPMENT_REQUEST_CONTENTS
54+
f"{Config.shipping_service.backend_url}/api/shipment_requests/1/shipments/TO_FACILITY",
55+
json=SHIPMENT_REQUEST_CONTENTS,
5456
)
5557

5658
responses.get(f"{Config.shipping_service.backend_url}/api/shipments/1", status=404)

0 commit comments

Comments
 (0)