{"name": "test_no_goods_confirm_zero_picking[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192687 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 0x7e154c8be7d0>\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 0x7e154ad6a450>)\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 = 4278192687, 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: 4278192687 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": "868b3be6-5ab2-448a-89a0-9ba97f7e955a-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "9c286404-e865-41ce-b0fd-0e2b8f65d228-attachment.json", "type": "application/json"}], "start": 1775691950559, "stop": 1775691950559}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "e78e1f95-2f6a-41eb-8b11-8a73f580dad6-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "f3d3adda-2938-40c2-9b12-36d946987871-attachment.json", "type": "application/json"}], "start": 1775691950566, "stop": 1775691950566}], "start": 1775691950559, "stop": 1775691950569}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "3f6bfbc9-3d77-427f-b1dd-9524b12cab41-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "8e0e29ee-3839-462c-a0eb-433dc3064f0e-attachment.json", "type": "application/json"}], "start": 1775691950579, "stop": 1775691950579}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "798f1c7c-5ca0-4631-b105-643d089053ad-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "ccef2cb5-ab81-49fa-9879-dd174803ccf2-attachment.json", "type": "application/json"}], "start": 1775691950580, "stop": 1775691950580}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "01172034-8146-453e-882f-b66cdb8d4fcb-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "4a943c80-4490-4f89-bb94-fd4b2cdeb65c-attachment.json", "type": "application/json"}], "start": 1775691950581, "stop": 1775691950581}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "722347bb-13be-44fd-866f-483644e76ccf-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "5d6565b1-5643-4069-af2c-73282d78c6c1-attachment.json", "type": "application/json"}], "start": 1775691950581, "stop": 1775691950581}, {"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": "5168519c-c53d-4238-9de9-bd12d9877c16-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "aa7b0837-0e28-4d54-9355-cfd577184761-attachment.json", "type": "application/json"}], "start": 1775691950619, "stop": 1775691950619}, {"name": "Response → 200, trace_id: 647cad4cd0dac235d71b995d05fca1f7", "status": "passed", "attachments": [{"name": "response.headers", "source": "08de9f7d-965d-42b9-bf46-372e63275468-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "eb857ee1-5d5b-4a56-9525-df85ca8924fa-attachment.json", "type": "application/json"}], "start": 1775691950619, "stop": 1775691950619}], "attachments": [{"name": "cURL", "source": "bc361991-e97a-457b-87a6-fa5d3861717d-attachment.txt", "type": "text/plain"}], "start": 1775691950619, "stop": 1775691950619}], "start": 1775691950582, "stop": 1775691950623}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "4b5665cc-2b9c-4650-a504-d99704c3a916-attachment.json", "type": "application/json"}, {"name": "Response", "source": "7458fe3a-f8d8-46a5-a431-7a5cf008db91-attachment.json", "type": "application/json"}], "start": 1775691950651, "stop": 1775691950688}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775691950689, "stop": 1775691953081}, {"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": "58df3aa2-cbfb-4aa5-ac46-1624c53e518c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bb0ff190-10eb-436b-b70f-c74047c4ab8f-attachment.json", "type": "application/json"}], "start": 1775691954708, "stop": 1775691954709}, {"name": "Response → 200, trace_id: c32b266c7c1c76311e399534ce41e266", "status": "passed", "attachments": [{"name": "response.headers", "source": "827ff9c0-0920-42f0-abba-02d3a89a1fd1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9b8f8b8c-a5e7-490b-9b47-9fc8c8859cbd-attachment.json", "type": "application/json"}], "start": 1775691954709, "stop": 1775691954709}], "attachments": [{"name": "cURL", "source": "ea2543ff-1306-4deb-84e1-2a35120ced59-attachment.txt", "type": "text/plain"}], "start": 1775691954708, "stop": 1775691954709}, {"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": "5d142cba-4516-44a5-aab4-06f5ce47532b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "91d79ad6-72c4-40d3-9b54-284a0925f9aa-attachment.json", "type": "application/json"}], "start": 1775691954754, "stop": 1775691954754}, {"name": "Response → 200, trace_id: e169acd9750cfc67c0c28d9242570098", "status": "passed", "attachments": [{"name": "response.headers", "source": "06b0ae84-8852-4c43-b188-0eb4c1b4c6b2-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dab97b2b-a83f-4ff7-a4e4-b4c51b753719-attachment.json", "type": "application/json"}], "start": 1775691954754, "stop": 1775691954754}], "attachments": [{"name": "cURL", "source": "e43a425e-fd01-48dd-861b-6d30efd1cc39-attachment.txt", "type": "text/plain"}], "start": 1775691954753, "stop": 1775691954754}, {"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": "3be8e272-916f-4917-819d-a8bdefe1942d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "88ff7787-b816-4063-bd07-d83d6ac25b7c-attachment.json", "type": "application/json"}], "start": 1775691954801, "stop": 1775691954801}, {"name": "Response → 200, trace_id: 2cc325c14e01e90121a24b1ad25604f0", "status": "passed", "attachments": [{"name": "response.headers", "source": "580e7ef6-e0f5-4117-aebb-deef9142cd0e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "970211be-1297-45f3-a0d1-7fd382296383-attachment.json", "type": "application/json"}], "start": 1775691954801, "stop": 1775691954801}], "attachments": [{"name": "cURL", "source": "839d34f4-3c40-49e6-bd02-9681053d5670-attachment.txt", "type": "text/plain"}], "start": 1775691954801, "stop": 1775691954801}, {"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": "0ebbdfb4-4aa3-4e84-a1bc-eb504136d3e8-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "46626032-cf97-4f68-b070-1ce0b01d6a54-attachment.json", "type": "application/json"}], "start": 1775691954846, "stop": 1775691954847}, {"name": "Response → 200, trace_id: 9af00373067e3a6bc34ac20c340a492b", "status": "passed", "attachments": [{"name": "response.headers", "source": "d3dba35d-a90b-4f14-96ce-30a10a7393ab-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "09efaafb-2ddd-45d8-a815-9e68e7f32d2e-attachment.json", "type": "application/json"}], "start": 1775691954847, "stop": 1775691954847}], "attachments": [{"name": "cURL", "source": "7c92742c-429e-4736-abe8-17d384457c85-attachment.txt", "type": "text/plain"}], "start": 1775691954846, "stop": 1775691954847}, {"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": "57203371-bbbe-474f-bd33-d05a91d48b34-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "46606096-7357-4c30-82ba-260ec812f7f5-attachment.json", "type": "application/json"}], "start": 1775691954878, "stop": 1775691954878}, {"name": "Response → 200, trace_id: 837278257d2a2fcfca3b4ef84b26b58e", "status": "passed", "attachments": [{"name": "response.headers", "source": "b12611b7-f157-4c93-930c-f5a9bd16feca-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ee02ccae-1ebd-40b4-8860-e461c920e1e6-attachment.txt", "type": "text/plain"}], "start": 1775691954878, "stop": 1775691954878}], "attachments": [{"name": "cURL", "source": "d9d70395-869e-4618-8dbe-050d8635f928-attachment.txt", "type": "text/plain"}], "start": 1775691954878, "stop": 1775691954879}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492980&pickingTaskKey=e1c7f365a9fabbdfe766d1be2a3e1b8a96e7ed914038da1328e9d2c8283b52c8", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "330dfb52-f2a5-4bde-a160-c0c1aa5ac4bc-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "abd2b338-ebc7-4949-8d61-0cd764470311-attachment.json", "type": "application/json"}], "start": 1775691954918, "stop": 1775691954918}, {"name": "Response → 200, trace_id: 4742270c499a0321ed5cf5e95e26a8c8", "status": "passed", "attachments": [{"name": "response.headers", "source": "1557d18d-6599-47d6-b71b-c0e592f937d4-attachment.json", "type": "application/json"}], "start": 1775691954918, "stop": 1775691954918}], "attachments": [{"name": "cURL", "source": "807bff7f-28d1-4cb6-84a6-84e7235955dd-attachment.txt", "type": "text/plain"}], "start": 1775691954918, "stop": 1775691954919}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=e1c7f365a9fabbdfe766d1be2a3e1b8a96e7ed914038da1328e9d2c8283b52c8&skuId=4100000000000053591&cellBarcode=QA-75691949173484800&cellId=488604", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4fc7dcc9-d29d-4bb1-b364-d62c745dc9f1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "32b9645d-4a09-49d3-b16e-a900130627b7-attachment.json", "type": "application/json"}], "start": 1775691965089, "stop": 1775691965089}, {"name": "Response → 200, trace_id: 1dd5f2d38441618ddb6975eff7adb0bb", "status": "passed", "attachments": [{"name": "response.headers", "source": "d051c5a4-1eb0-4e8d-b691-1caad5de5cdc-attachment.json", "type": "application/json"}], "start": 1775691965089, "stop": 1775691965089}], "attachments": [{"name": "cURL", "source": "2dfd9bab-d577-4b7e-a4e6-44f41e66e6ff-attachment.txt", "type": "text/plain"}], "start": 1775691965089, "stop": 1775691965089}, {"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": "67a160b1-72c1-44f4-a3a7-db96ca6d5dc1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "eaa329fd-72a0-49cd-a420-4677f8a77b15-attachment.json", "type": "application/json"}], "start": 1775691965123, "stop": 1775691965124}, {"name": "Response → 200, trace_id: 0bad1230c31903cfb487b21afd6a8b07", "status": "passed", "attachments": [{"name": "response.headers", "source": "55bc70e4-ee1e-431d-8429-f73283f618eb-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "bbb0b6e1-4b62-4c61-9333-ec28e5c1c891-attachment.json", "type": "application/json"}], "start": 1775691965124, "stop": 1775691965124}], "attachments": [{"name": "cURL", "source": "ffd70042-9633-4002-b811-a1da06998f14-attachment.txt", "type": "text/plain"}], "start": 1775691965123, "stop": 1775691965124}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "363dff75-4369-41ac-98ef-ab5062a6cb3d-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "ed3ed054-4cfd-4504-b505-be67fe7eb95b-attachment.json", "type": "application/json"}], "start": 1775691965138, "stop": 1775691965138}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "3061d506-5118-46bb-a7c7-fd75d442eae2-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "fdab1984-de40-4011-ac62-b88848b333c3-attachment.json", "type": "application/json"}], "start": 1775691965174, "stop": 1775691965175}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/confirm?id=88895", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7bb6c58d-1ae3-4935-b7e4-ee2f45470934-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "4b8ca145-0949-4623-b249-49c0f4b4aca8-attachment.json", "type": "application/json"}], "start": 1775691965197, "stop": 1775691965197}, {"name": "Response → 200, trace_id: aab831794bc18687d4d034d2e3370d43", "status": "passed", "attachments": [{"name": "response.headers", "source": "0462b408-c4a4-400d-a5d1-918a104937f3-attachment.json", "type": "application/json"}], "start": 1775691965197, "stop": 1775691965197}], "attachments": [{"name": "cURL", "source": "a1024214-d43b-4618-885a-c9f471db4b0f-attachment.txt", "type": "text/plain"}], "start": 1775691965197, "stop": 1775691965197}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775691965199, "stop": 1775691965202}], "attachments": [{"name": "log", "source": "dd4bb85d-511d-40df-aa71-ad4699995baa-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='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": 1775691950537, "stop": 1775692265215, "uuid": "99a72cb8-5ba5-4ec4-a31d-838ad6c091ea", "historyId": "bce535724f18cb9982c1adcb7264bfbb", "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-7lntf51k"}, {"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"]}