File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ def test_no_top_level_containers(client):
3636def 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):
5051def 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 )
You can’t perform that action at this time.
0 commit comments