{"name": "test_no_goods_confirm_zero_picking[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192540 in wrong status: PROBLEMATIC_WAITING_CANCELING\nassert 'PROBLEMATIC_...ING_CANCELING' == 'CANCELED'\n  \n  - CANCELED\n  + PROBLEMATIC_WAITING_CANCELING", "trace": "self = <tests.wms.test_assembly.test_lost_goods.TestLostGoods object at 0x71d634b88b50>\nwms_provider_warehouse_stock = WMSProviderWarehouseStockDTO(warehouse=WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff...ider_name='YaMarket'), stocks=<src.framework.wms.builders.availability.stock.WMSStockBuilder object at 0x71d6344cc910>)\n\n    def test_no_goods_confirm_zero_picking(self, wms_provider_warehouse_stock: DTO):\n        # Check cell starter conditions\n        sku_cell_info = AvailabilityQueries().get_sku_cell_infos(\n            sku_id=wms_provider_warehouse_stock.stocks.items[0].sku,\n            cell_key=wms_provider_warehouse_stock.stocks.cell_key,\n        )[0]\n        assert sku_cell_info.SkuCellBarcodeInfo.amount == wms_provider_warehouse_stock.stocks.items[0].qty\n        assert sku_cell_info.SkuCell.inventory_needed is False\n        assert sku_cell_info.SkuCellBarcodeInfo.inventory_needed is False\n    \n        # Create order and transition through states until it reaches problematic status due to zero picking\n        order = WMSOrderBuilder(\n            warehouse=wms_provider_warehouse_stock.warehouse,\n            items=wms_provider_warehouse_stock.stocks.items,\n            user=wms_provider_warehouse_stock.stocks.user,\n            provider=wms_provider_warehouse_stock.provider,\n            headers=wms_provider_warehouse_stock.stocks.headers,\n        ).login_or_refresh()\n    \n        order.state_created()\n        order.state_ready()\n        order.state_in_queue()\n        order.outbound_picking_with_no_goods(zero_picking=True)\n        wait_order_assembly(\n            order_id=order.order.order_id, order_status=AssemblyOrderStatus.PROBLEMATIC_WAITING_CANCELING\n        )\n    \n        # Check sku amount in cell after lost goods\n        sku_cell_info = AvailabilityQueries().get_sku_cell_infos(\n            sku_id=wms_provider_warehouse_stock.stocks.items[0].sku,\n            cell_key=order.picking.data.no_goods_cell_keys[0],\n        )[0]\n        assert sku_cell_info.SkuCellBarcodeInfo.amount == 0\n    \n        # Create and update lost goods record, verify it's in NEED_CONFIRM status\n        lost_goods = WMSLostGoodsBuilder(\n            cell_key=order.picking.data.no_goods_cell_keys[0],\n            sku_barcode=wms_provider_warehouse_stock.stocks.items[0].barcode,\n            warehouse=wms_provider_warehouse_stock.warehouse,\n            headers=wms_provider_warehouse_stock.stocks.headers,\n        ).update_lost_good()\n        assert (\n            lost_goods.data.lost_good.status == AvailabilityLostGoodStatus.NEED_CONFIRM\n        ), f\"lost good in wrong status: {lost_goods.data.lost_good.status}\"\n    \n        # Confirm lost good and verify inventory status (amount is zero and inventory is needed)\n        lost_goods.lost_good_confirm()\n        sku_cell_info = AvailabilityQueries().get_sku_cell_infos(\n            sku_id=wms_provider_warehouse_stock.stocks.items[0].sku,\n            cell_key=order.picking.data.no_goods_cell_keys[0],\n        )[0]\n        assert sku_cell_info.SkuCellBarcodeInfo.amount == 0\n        assert sku_cell_info.SkuCell.inventory_needed\n        assert sku_cell_info.SkuCellBarcodeInfo.inventory_needed\n    \n        # Verify order is in CANCELED status in assembly service\n>       wait_order_assembly(order_id=order.order.order_id, order_status=AssemblyOrderStatus.CANCELED)\n\ntests/wms/test_assembly/test_lost_goods.py:86: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n/usr/local/lib/python3.11/site-packages/retrying.py:55: in wrapped_f\n    return Retrying(*dargs, **dkw).call(f, *args, **kw)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/retrying.py:289: in call\n    raise attempt.get()\n          ^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/retrying.py:326: in get\n    raise exc.with_traceback(tb)\n/usr/local/lib/python3.11/site-packages/retrying.py:273: in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\norder_id = 4278192540, order_status = <AssemblyOrderStatus.CANCELED: 'CANCELED'>\norder_type = None, last_mile_id = None\n\n    @retry(stop_max_attempt_number=6, wait_fixed=10 * 6000)\n    def wait_order_assembly(\n        order_id: int, order_status: AssemblyOrderStatus = None, order_type: WMSOrderType = None, last_mile_id: int = None\n    ):\n        order = AssemblyQueries().get_order(order_id)\n        assert order, f\"No Order created in Assembly service with ID: {order_id}\"\n        if order_status is not None:\n>           assert order.status == order_status.name, f\"{order_id} in wrong status: {order.status}\"\nE           AssertionError: 4278192540 in wrong status: PROBLEMATIC_WAITING_CANCELING\nE           assert 'PROBLEMATIC_...ING_CANCELING' == 'CANCELED'\nE             \nE             - CANCELED\nE             + PROBLEMATIC_WAITING_CANCELING\n\nsrc/framework/wms/validation/waiters/order.py:66: AssertionError"}, "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "836026be-6059-4256-940a-a9b9ed77de54-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "b76bb2de-2e96-4670-bed8-29c6a356a41d-attachment.json", "type": "application/json"}], "start": 1775432744643, "stop": 1775432744643}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "86ee9a9e-a920-4960-869e-9dbba2d64e1c-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "9250e3a4-0d05-4e25-97e2-f2abb7049f9b-attachment.json", "type": "application/json"}], "start": 1775432744651, "stop": 1775432744651}], "start": 1775432744644, "stop": 1775432744655}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "289b7748-2869-4d54-ae89-8f8841b6a29f-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "51ff158d-decc-42d0-8fc5-a53eda77fe23-attachment.json", "type": "application/json"}], "start": 1775432744666, "stop": 1775432744667}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "fb44ec32-cdfa-4c2a-958e-f72769970c39-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "bc8f6605-58ec-48a1-bf9b-5dc188e17fd2-attachment.json", "type": "application/json"}], "start": 1775432744667, "stop": 1775432744667}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "e17cb440-a466-4b55-b7ee-c3ff0a14cd6c-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "129f91bf-8cfa-420d-a413-ea4bb9bd7f21-attachment.json", "type": "application/json"}], "start": 1775432744668, "stop": 1775432744668}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "3401d71e-9b87-460b-8d97-a6aa9b5c8d10-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "e052c986-91fa-42bf-80e4-50ea13ad5cc7-attachment.json", "type": "application/json"}], "start": 1775432744669, "stop": 1775432744669}, {"name": "Waiter function: login_or_refresh", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/oauth/custom/token", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ee27328c-3ff7-447c-8782-44efa7aa45c8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b8d7bd28-5ef1-43e9-a4c2-ea26b750d00c-attachment.json", "type": "application/json"}], "start": 1775432744701, "stop": 1775432744702}, {"name": "Response → 200, trace_id: d1be87e05e217b353df3856b84d95cad", "status": "passed", "attachments": [{"name": "response.headers", "source": "c30ffb48-6eba-4bf5-bc91-ab0eaf70f203-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fba4885c-3814-459c-bda1-ee189015dce2-attachment.json", "type": "application/json"}], "start": 1775432744702, "stop": 1775432744702}], "attachments": [{"name": "cURL", "source": "a6524f34-6987-4995-98df-14d895dfc3c4-attachment.txt", "type": "text/plain"}], "start": 1775432744701, "stop": 1775432744702}], "start": 1775432744670, "stop": 1775432744705}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "8c515461-cbe9-4612-9618-9aa528f5516c-attachment.json", "type": "application/json"}, {"name": "Response", "source": "f282aac6-b1db-41fc-905a-73db601f251a-attachment.json", "type": "application/json"}], "start": 1775432744734, "stop": 1775432744768}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775432744769, "stop": 1775432747140}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/create-wave/order", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2791acfb-9900-4ac8-95a4-8b31cfdb9d93-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e782a2f1-782f-471a-8387-300384cd3c0f-attachment.json", "type": "application/json"}], "start": 1775432748276, "stop": 1775432748276}, {"name": "Response → 200, trace_id: e02b9a156186e58fe71e394462a28593", "status": "passed", "attachments": [{"name": "response.headers", "source": "85626344-7246-4b44-ad46-e1a212455eb4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a6e13e8c-99c9-4b8f-bf9b-6c958d480bc3-attachment.json", "type": "application/json"}], "start": 1775432748276, "stop": 1775432748276}], "attachments": [{"name": "cURL", "source": "906a4b1b-b495-4971-b75b-448244a62de3-attachment.txt", "type": "text/plain"}], "start": 1775432748276, "stop": 1775432748276}, {"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/api/v1/account/set-worker-location", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3b8799b7-3565-48c9-93c9-971c377054ac-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "48ab9998-962e-46d5-9521-44cea5940c6a-attachment.json", "type": "application/json"}], "start": 1775432748321, "stop": 1775432748322}, {"name": "Response → 200, trace_id: f5c1bb4d3c8460cdd11adaa7ff6c1793", "status": "passed", "attachments": [{"name": "response.headers", "source": "7f8d3ba4-e75b-4497-a607-5b9d3d1ddf02-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ec276d19-b99d-430f-8d28-49d9090eae8e-attachment.json", "type": "application/json"}], "start": 1775432748322, "stop": 1775432748322}], "attachments": [{"name": "cURL", "source": "221b508f-dec8-4a40-ba1e-f8c6f1f67321-attachment.txt", "type": "text/plain"}], "start": 1775432748321, "stop": 1775432748322}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task-for-wave", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0f628a23-d2cb-4af1-92fe-35f9dcbf34a0-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b4bdefc1-9de4-4bc9-b251-559affd2fd16-attachment.json", "type": "application/json"}], "start": 1775432748367, "stop": 1775432748367}, {"name": "Response → 200, trace_id: 1abba01bb9184074c37d928813d54a43", "status": "passed", "attachments": [{"name": "response.headers", "source": "8b1c7049-063a-4141-9a05-43d07e8030d5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5dc7c75d-ab31-4273-8598-75482446e5c9-attachment.json", "type": "application/json"}], "start": 1775432748367, "stop": 1775432748367}], "attachments": [{"name": "cURL", "source": "8ece8072-6640-4a65-a9d3-61d81624bf58-attachment.txt", "type": "text/plain"}], "start": 1775432748367, "stop": 1775432748368}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "85d22ac3-8980-4994-825a-1402660ac696-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a246270b-61d6-4798-b3be-958447e47856-attachment.json", "type": "application/json"}], "start": 1775432748413, "stop": 1775432748413}, {"name": "Response → 200, trace_id: 0fc199abf3c9c3d414f8b6b05d4aff24", "status": "passed", "attachments": [{"name": "response.headers", "source": "935377a3-53f1-4560-8a13-536501d34ef8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1439398a-4bfd-4efa-a96f-1c12024e3038-attachment.json", "type": "application/json"}], "start": 1775432748413, "stop": 1775432748413}], "attachments": [{"name": "cURL", "source": "434a0ba2-5161-4f7a-a19c-569d36e14163-attachment.txt", "type": "text/plain"}], "start": 1775432748413, "stop": 1775432748413}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/{sortingType}/box/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e1371977-b098-4e74-abea-4677e82932d3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c77a4476-aa82-42c4-8a40-17fcbc8f5360-attachment.json", "type": "application/json"}], "start": 1775432748443, "stop": 1775432748443}, {"name": "Response → 200, trace_id: 9d9a410dbf3d04a6edbb682fb97265b4", "status": "passed", "attachments": [{"name": "response.headers", "source": "1735d7d7-843d-4d2c-aea8-45bbec2a3747-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e1fe5bfe-d80b-4c59-9b38-cdadcf6e2012-attachment.txt", "type": "text/plain"}], "start": 1775432748443, "stop": 1775432748443}], "attachments": [{"name": "cURL", "source": "d9ec855f-05fd-4120-a1aa-e9bf59fd12b8-attachment.txt", "type": "text/plain"}], "start": 1775432748443, "stop": 1775432748443}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492870&pickingTaskKey=6cc2abd88ce0c158a53b94f083929098057b09838fb9876da1e8c569ef2951a8", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "44aa2b5f-acff-47fd-a501-76cfd20b2054-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "cdaa370d-31d9-4078-b7ac-e70bb359c613-attachment.json", "type": "application/json"}], "start": 1775432748475, "stop": 1775432748476}, {"name": "Response → 200, trace_id: e62dc9dc0081530095a233fa9cc7c29f", "status": "passed", "attachments": [{"name": "response.headers", "source": "8df20694-12d9-4217-9833-b87ee0d29261-attachment.json", "type": "application/json"}], "start": 1775432748476, "stop": 1775432748476}], "attachments": [{"name": "cURL", "source": "9391212a-98aa-4748-90a0-0c27a0af296a-attachment.txt", "type": "text/plain"}], "start": 1775432748475, "stop": 1775432748476}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=6cc2abd88ce0c158a53b94f083929098057b09838fb9876da1e8c569ef2951a8&skuId=4100000000000053162&cellBarcode=QA-75432743282606592&cellId=488300", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7fd9e6b9-7afb-4d50-bd65-b8f675508ba4-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2569ef58-0095-4e00-8d84-f300dce840be-attachment.json", "type": "application/json"}], "start": 1775432758629, "stop": 1775432758629}, {"name": "Response → 200, trace_id: 36828f484d3bf19ebc866f4a6eff01df", "status": "passed", "attachments": [{"name": "response.headers", "source": "8fb5d761-627e-4f33-b581-72490e0785a8-attachment.json", "type": "application/json"}], "start": 1775432758630, "stop": 1775432758630}], "attachments": [{"name": "cURL", "source": "1c59a0a1-06b9-4e59-82e4-2e0670ba88f1-attachment.txt", "type": "text/plain"}], "start": 1775432758629, "stop": 1775432758630}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "236f47e2-57ad-4e49-aad6-724648ab8b60-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "37867ac9-0233-4fac-aeff-340175ebd07e-attachment.json", "type": "application/json"}], "start": 1775432758666, "stop": 1775432758666}, {"name": "Response → 200, trace_id: 84dcf73a34234b3bb510f9c5145030eb", "status": "passed", "attachments": [{"name": "response.headers", "source": "825ae0af-0eef-41e5-baf0-04a7a6d5c737-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "90eac060-3bcc-497d-99c8-3f5f87b34353-attachment.json", "type": "application/json"}], "start": 1775432758666, "stop": 1775432758666}], "attachments": [{"name": "cURL", "source": "a0054e87-496c-429a-9461-5d80da953d68-attachment.txt", "type": "text/plain"}], "start": 1775432758666, "stop": 1775432758667}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "860361f2-d4e8-4f41-b5bc-b295bb5b47fe-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "abce39d4-994d-4538-8295-74317b53f773-attachment.json", "type": "application/json"}], "start": 1775432758687, "stop": 1775432758687}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "a5d17e36-3062-4fdb-927d-cdbd8e679584-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "2f70c85d-8729-4ecf-95f1-87e0919390f7-attachment.json", "type": "application/json"}], "start": 1775432758706, "stop": 1775432758707}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/confirm?id=88879", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c469307e-4823-4a79-8be1-0276dc3e44df-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "90afd913-2ac4-44d4-accb-5aa5f96ee007-attachment.json", "type": "application/json"}], "start": 1775432758729, "stop": 1775432758729}, {"name": "Response → 200, trace_id: 45605f18a51542fd6780c09677ac1a1f", "status": "passed", "attachments": [{"name": "response.headers", "source": "1009e477-4a42-40da-88df-1463fb8222c0-attachment.json", "type": "application/json"}], "start": 1775432758729, "stop": 1775432758729}], "attachments": [{"name": "cURL", "source": "4ab1926c-b67b-4ad8-ac5b-87e7bec6007d-attachment.txt", "type": "text/plain"}], "start": 1775432758729, "stop": 1775432758729}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775432758733, "stop": 1775432758735}], "attachments": [{"name": "log", "source": "4b7a4ab9-501a-4ae9-8ba4-e5b8a4f23c98-attachment.txt", "type": "text/plain"}], "parameters": [{"name": "wms_providers", "value": "{'provider': WMSProvider(last_mile='YaMarket', city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.ALIEXPRESS_UZ: 12>, last_mile_id=<DeliveryLastMileId.ALIEXPRESS_UZ: 12>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.ALIEXPRESS_UZ: 12>, order_source=<OrderSource.YaMarket: 'YaMarket'>, provider_name='YaMarket'), 'warehouse': WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff_id='WH_TASHKENT', hub_last_mile_id=0, providers=[WMSProvider(last_mile=<DeliveryLastMile.TANAIS: 'TANAIS'>, city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.TANAIS: 13>, last_mile_id=<DeliveryLastMileId.TANAIS: 13>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.TANAIS: 13>, order_source=<OrderSource.GLOBAL: 'GLOBAL'>, provider_name=<DeliveryLastMile.TANAIS: 'TANAIS'>), WMSProvider(last_mile='YaMarket', city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.ALIEXPRESS_UZ: 12>, last_mile_id=<DeliveryLastMileId.ALIEXPRESS_UZ: 12>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.ALIEXPRESS_UZ: 12>, order_source=<OrderSource.YaMarket: 'YaMarket'>, provider_name='YaMarket')], name='Uzbekistan', description='Бонд Узбекистан', use_datamatrix=False, user=WMSAccount(wms_id=33349, phone='3335000010', role_wms_id=23, zone_id=None, patronymic=None, last_name='', password='1234', first_name='', token='', refresh_token=''), storage_cell=<StorageCells.MA1_1_1_01: 'MA1-1-1-01'>, defected_cell=<DefectedCells.BR_01_01_1_05: 'BR-01-01-1-05'>, overage_cell=<OverageCells.IZ_1_01_01_1_05: 'IZ-1-01-01-1-05'>, weighing_cell=<WeighingCells.WT_1_11_1: 'WT-1-01-1'>, packing_table=<PackingTable.UP_AUTOTEST_01: 'UP-AUTOTEST-01'>, packing_zone_id='', qa_zone=<WMSZoneIds.QA_UZ_ZONE: 31>, email=None, phone=None)}"}], "start": 1775432744622, "stop": 1775433058748, "uuid": "73deecdd-a91e-41d3-8631-baf927b3b39d", "historyId": "6631f3bba7e47bb3aa599677449c161d", "testCaseId": "efe93f13663df41b69ffceaacf67506b", "fullName": "tests.wms.test_assembly.test_lost_goods.TestLostGoods#test_no_goods_confirm_zero_picking", "labels": [{"name": "feature", "value": "Lost goods"}, {"name": "tag", "value": "dm-wms-be-service-assembly"}, {"name": "tag", "value": "wms-flow-lost-goods"}, {"name": "parentSuite", "value": "tests.wms.test_assembly"}, {"name": "suite", "value": "test_lost_goods"}, {"name": "subSuite", "value": "TestLostGoods"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-3-ruxi5d0x"}, {"name": "thread", "value": "22-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.wms.test_assembly.test_lost_goods"}], "titlePath": ["tests", "wms", "test_assembly", "test_lost_goods.py", "TestLostGoods"]}