{"name": "test_no_goods_confirm_zero_picking[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192451 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 0x7efab8284a90>\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 0x7efab3f11850>)\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 = 4278192451, 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: 4278192451 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": "b48125ee-ab76-4f9f-a276-2a24f46cba4b-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "a8268436-9485-440e-9c17-b56332519bec-attachment.json", "type": "application/json"}], "start": 1775259949926, "stop": 1775259949926}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "4a3963e1-7c51-4fa8-9382-ea9929412964-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "947ef199-6c6f-4710-aded-5374b45187bc-attachment.json", "type": "application/json"}], "start": 1775259949933, "stop": 1775259949933}], "start": 1775259949926, "stop": 1775259949937}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "6b48195e-247d-404b-aaca-662f25c79d65-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "0cd50f7b-1543-47ac-a553-3df3dc4f73d6-attachment.json", "type": "application/json"}], "start": 1775259949948, "stop": 1775259949948}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "a2913f91-a5eb-4617-846e-ae4f1eb81a92-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "46fdf3aa-d7d8-4125-a340-3a9a434fa83a-attachment.json", "type": "application/json"}], "start": 1775259949949, "stop": 1775259949949}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "9170059f-eddf-4e3a-815e-409be52654e6-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "cde2df9c-b833-434c-97ac-51e426633c72-attachment.json", "type": "application/json"}], "start": 1775259949950, "stop": 1775259949950}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "258eeb43-6718-4c6e-a2f9-724b4bb79d25-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "f668c296-da6c-4a4c-92c3-d7dbd862f9ec-attachment.json", "type": "application/json"}], "start": 1775259949951, "stop": 1775259949951}, {"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": "88412c02-1e62-4068-9d8b-a8902cada236-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2bdcba59-8bc8-4e94-93fb-d0cd6322f113-attachment.json", "type": "application/json"}], "start": 1775259949980, "stop": 1775259949980}, {"name": "Response → 200, trace_id: ff63616e65591c45a593bd4b8219bf2d", "status": "passed", "attachments": [{"name": "response.headers", "source": "07146190-bbc1-4af1-a8d3-c332528e69c7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "06f94890-9f3f-4f53-a7e9-3253af52893f-attachment.json", "type": "application/json"}], "start": 1775259949980, "stop": 1775259949980}], "attachments": [{"name": "cURL", "source": "c85712ca-040a-4b09-bf8a-d7c017f11ce2-attachment.txt", "type": "text/plain"}], "start": 1775259949980, "stop": 1775259949980}], "start": 1775259949951, "stop": 1775259949983}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "9e901028-4673-4f5a-8a82-84631d4f41b2-attachment.json", "type": "application/json"}, {"name": "Response", "source": "be3aa0b8-a8e0-4589-b0c9-f091eee3dc63-attachment.json", "type": "application/json"}], "start": 1775259950010, "stop": 1775259950051}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775259950052, "stop": 1775259952447}, {"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": "d9c7485f-a0b2-44ec-b304-65bd27d78951-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "203278e9-7f14-4d10-afca-31045165514c-attachment.json", "type": "application/json"}], "start": 1775259954722, "stop": 1775259954722}, {"name": "Response → 200, trace_id: f136bc875008b088731dcfd17f47d281", "status": "passed", "attachments": [{"name": "response.headers", "source": "62099040-0584-43d5-80f0-f31f43b7f267-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "41110cac-4133-45a0-8140-bf8ee7621bfe-attachment.json", "type": "application/json"}], "start": 1775259954722, "stop": 1775259954722}], "attachments": [{"name": "cURL", "source": "77c882f7-c1df-4a3e-82f4-b4a25bd90592-attachment.txt", "type": "text/plain"}], "start": 1775259954722, "stop": 1775259954722}, {"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": "887b118c-2351-4b60-a4a0-bf42ba706df8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cc75d9ae-e0ac-4628-a67e-51d6bcc9699f-attachment.json", "type": "application/json"}], "start": 1775259954769, "stop": 1775259954769}, {"name": "Response → 200, trace_id: c83aabda55595498efaabe324d8ed8da", "status": "passed", "attachments": [{"name": "response.headers", "source": "50d58d40-3121-47cc-80c6-4ff5634fb380-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9bf48a88-e08f-4f26-85ef-863adfaf50c4-attachment.json", "type": "application/json"}], "start": 1775259954769, "stop": 1775259954770}], "attachments": [{"name": "cURL", "source": "d133153d-29a4-484b-96e9-cfc85dc8035a-attachment.txt", "type": "text/plain"}], "start": 1775259954769, "stop": 1775259954770}, {"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": "f299d8a6-2f9e-430b-8cac-d50193ff77bd-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "477d9b24-d5a4-46e2-9a97-bfad846160c4-attachment.json", "type": "application/json"}], "start": 1775259954822, "stop": 1775259954822}, {"name": "Response → 200, trace_id: a6491178427fb79685d79adfbb5006d4", "status": "passed", "attachments": [{"name": "response.headers", "source": "e5d0430e-c8c3-43da-8f11-4b487e1694cc-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dc718433-2690-44a3-803c-f15664e5be6d-attachment.json", "type": "application/json"}], "start": 1775259954822, "stop": 1775259954822}], "attachments": [{"name": "cURL", "source": "afafc3a4-34ae-44d2-9bd3-a44d448bafcc-attachment.txt", "type": "text/plain"}], "start": 1775259954821, "stop": 1775259954822}, {"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": "dfae717f-50e4-4633-9d7d-fd4f569fc7e0-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "4f3bd948-0b07-49b7-b101-eaa3bdbc7342-attachment.json", "type": "application/json"}], "start": 1775259954870, "stop": 1775259954871}, {"name": "Response → 200, trace_id: 34187fbadac49f11522161c94198cb5f", "status": "passed", "attachments": [{"name": "response.headers", "source": "720193f7-eaca-4787-b0df-15cfae0bf609-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ea998d71-fc05-4c25-a275-f6a200337760-attachment.json", "type": "application/json"}], "start": 1775259954871, "stop": 1775259954871}], "attachments": [{"name": "cURL", "source": "70de9c09-6872-4c08-bdad-f59ea36c8981-attachment.txt", "type": "text/plain"}], "start": 1775259954870, "stop": 1775259954871}, {"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": "847285dd-a61d-4369-9372-1d8f8bec11d9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "801fd544-0496-46a9-beef-3273eeca6020-attachment.json", "type": "application/json"}], "start": 1775259954901, "stop": 1775259954901}, {"name": "Response → 200, trace_id: c93cff27eb94f948dc61e715fba56394", "status": "passed", "attachments": [{"name": "response.headers", "source": "322637eb-2b09-4b9a-a9d3-f6860287b95e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e271ad30-da27-4f98-b04b-87229a8be8c2-attachment.txt", "type": "text/plain"}], "start": 1775259954901, "stop": 1775259954901}], "attachments": [{"name": "cURL", "source": "17a4a6fc-3e06-447b-a9d8-1a7a78a0be99-attachment.txt", "type": "text/plain"}], "start": 1775259954901, "stop": 1775259954901}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492772&pickingTaskKey=ea9ffde297253909884dcc4eca58ae856d28ebcceada58a248cc11f6389b2afa", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e091c800-009e-4bee-9803-f412defc72b6-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "728bf964-6449-45b0-880f-60debe9c19b7-attachment.json", "type": "application/json"}], "start": 1775259954936, "stop": 1775259954936}, {"name": "Response → 200, trace_id: a54bbe208116d33a9a959543661ac0db", "status": "passed", "attachments": [{"name": "response.headers", "source": "b283b348-dfb4-4f5f-aedd-a8ebc213aa4c-attachment.json", "type": "application/json"}], "start": 1775259954936, "stop": 1775259954937}], "attachments": [{"name": "cURL", "source": "629b5831-5cde-4208-becf-8b4a877c8b43-attachment.txt", "type": "text/plain"}], "start": 1775259954936, "stop": 1775259954937}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=ea9ffde297253909884dcc4eca58ae856d28ebcceada58a248cc11f6389b2afa&skuId=4100000000000052851&cellBarcode=QA-75259948695168768&cellId=488068", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b172627c-5ac3-4db4-96c3-429986c0e485-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "d82a3519-58d6-4865-bcf7-90e200d5ad2d-attachment.json", "type": "application/json"}], "start": 1775259965120, "stop": 1775259965121}, {"name": "Response → 200, trace_id: dcad61d750cde01143f994be1d735717", "status": "passed", "attachments": [{"name": "response.headers", "source": "a1c43bd3-06c4-48a5-a003-198466ab0647-attachment.json", "type": "application/json"}], "start": 1775259965121, "stop": 1775259965121}], "attachments": [{"name": "cURL", "source": "c8faff86-3616-4170-b0bf-1397cbf27b0b-attachment.txt", "type": "text/plain"}], "start": 1775259965120, "stop": 1775259965121}, {"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": "0fdb3983-6fcf-48ea-bb08-7cae65b4f433-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "fd6da22d-5539-47d2-b520-5cc70b92349a-attachment.json", "type": "application/json"}], "start": 1775259965155, "stop": 1775259965155}, {"name": "Response → 200, trace_id: 967ef4e4e41b0f40dcf257a13818428a", "status": "passed", "attachments": [{"name": "response.headers", "source": "9449460c-0af5-4ec7-8d3a-7d235ed016fe-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "48572906-f367-4e67-9354-28c89d97758b-attachment.json", "type": "application/json"}], "start": 1775259965155, "stop": 1775259965155}], "attachments": [{"name": "cURL", "source": "e12459b3-9a16-4a40-ba79-9bab8b0d3498-attachment.txt", "type": "text/plain"}], "start": 1775259965154, "stop": 1775259965155}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "07d2316c-0e00-4fc5-afb3-4633c249b8cd-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "4f974462-0cf6-4038-be5f-bac2c4b641f2-attachment.json", "type": "application/json"}], "start": 1775259965169, "stop": 1775259965169}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "1210c587-0c8f-4159-ac3b-63dfbdfa1263-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "de34fe10-7cd9-4089-9945-952db239ea74-attachment.json", "type": "application/json"}], "start": 1775259965231, "stop": 1775259965232}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/confirm?id=88870", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c1991ec9-e3f6-44c2-a82d-99824f0777d4-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "8e2fe167-bc09-4797-8a38-fa94b63c0632-attachment.json", "type": "application/json"}], "start": 1775259965255, "stop": 1775259965255}, {"name": "Response → 200, trace_id: 1819e84495f098375c1c3eeb0354a41c", "status": "passed", "attachments": [{"name": "response.headers", "source": "980dda0a-d7fd-46cb-a7b9-02649d254661-attachment.json", "type": "application/json"}], "start": 1775259965255, "stop": 1775259965255}], "attachments": [{"name": "cURL", "source": "29991c4c-43dd-4a59-8074-e8c6a18fec92-attachment.txt", "type": "text/plain"}], "start": 1775259965255, "stop": 1775259965255}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775259965258, "stop": 1775259965261}], "attachments": [{"name": "log", "source": "f42547fe-df4e-4449-bb02-e94bf21f35a4-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": 1775259949904, "stop": 1775260392057, "uuid": "1d7b6095-55ba-4a83-a5f1-c920193734da", "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-e683bnu0"}, {"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"]}