{"name": "test_no_goods_confirm_zero_picking[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192607 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 0x71ed3ffb2550>\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 0x71ed3d94b690>)\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 = 4278192607, 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: 4278192607 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": "6f0febc3-3f13-4a67-b1d4-a38c927620c6-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "62e45378-12b7-4a6e-a0ad-3411d7d152c7-attachment.json", "type": "application/json"}], "start": 1775519088664, "stop": 1775519088664}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "63ff3aed-a87c-4568-9a76-5e9f823f70ec-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "f917eb8a-73e8-46da-9951-b168f2432e56-attachment.json", "type": "application/json"}], "start": 1775519088672, "stop": 1775519088672}], "start": 1775519088664, "stop": 1775519088676}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "4e8bc3d0-8304-4df5-9c00-bc07186b77d1-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "df2e2a61-2d2c-4837-86d0-86c8635a8bc2-attachment.json", "type": "application/json"}], "start": 1775519088685, "stop": 1775519088686}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "7d2ad8ab-a2e7-4a9b-af93-8ddd2905b89f-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "4d31aa71-2f86-4403-99b8-7ceb5dcade83-attachment.json", "type": "application/json"}], "start": 1775519088686, "stop": 1775519088686}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "9c2fde4f-ca90-471b-a735-22c83cff1cf7-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "ad4606a6-700a-4ab9-8614-006b07cb57d4-attachment.json", "type": "application/json"}], "start": 1775519088687, "stop": 1775519088687}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "98b6e229-4577-4e96-9208-0fb97731b80d-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "b6d245da-8b9a-4716-9b2a-2e6e6f1fc0e8-attachment.json", "type": "application/json"}], "start": 1775519088688, "stop": 1775519088688}, {"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": "2724ec85-7d9b-44d1-8b36-0f0a73f1900e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e0117a2d-d10b-40f6-abae-3deddc658ee8-attachment.json", "type": "application/json"}], "start": 1775519088719, "stop": 1775519088719}, {"name": "Response → 200, trace_id: e45b517799cf15b0f2d0237ae0ed7584", "status": "passed", "attachments": [{"name": "response.headers", "source": "d7c5d7f6-05ae-40e3-b7ea-097cc5e18b1f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "18119157-80a0-4e9d-b260-bb0d2cc5bda3-attachment.json", "type": "application/json"}], "start": 1775519088720, "stop": 1775519088720}], "attachments": [{"name": "cURL", "source": "bd739ee5-f300-49e4-9c1b-d34b80ff1a62-attachment.txt", "type": "text/plain"}], "start": 1775519088719, "stop": 1775519088720}], "start": 1775519088688, "stop": 1775519088723}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "bd95da40-6c46-4602-a9d2-7aaefd3bbb28-attachment.json", "type": "application/json"}, {"name": "Response", "source": "cb929434-deb6-43e8-8485-7a9d5453ae25-attachment.json", "type": "application/json"}], "start": 1775519088753, "stop": 1775519088786}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775519088787, "stop": 1775519091155}, {"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": "a9868b8b-9b21-4216-bc14-e555dbf57c9c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "2a1933d6-9510-4ff1-9e52-dea237d40ee9-attachment.json", "type": "application/json"}], "start": 1775519092260, "stop": 1775519092260}, {"name": "Response → 200, trace_id: 86afc577529bbadd9342c4af173d3818", "status": "passed", "attachments": [{"name": "response.headers", "source": "0571caf8-fc92-452e-ae42-189b03b0ceff-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "19b0bf0a-2112-4392-98b9-d3dd15d2815a-attachment.json", "type": "application/json"}], "start": 1775519092260, "stop": 1775519092260}], "attachments": [{"name": "cURL", "source": "baf0382f-4acc-459c-946d-56057421bcdc-attachment.txt", "type": "text/plain"}], "start": 1775519092260, "stop": 1775519092260}, {"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": "8d5687f0-77f8-454d-a9b3-16723b6df3ee-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c3ac2812-fca3-43d4-8ecb-b77f67ec9a3d-attachment.json", "type": "application/json"}], "start": 1775519092305, "stop": 1775519092305}, {"name": "Response → 200, trace_id: 00d8b428ac8a39e8c24eb29374982a9e", "status": "passed", "attachments": [{"name": "response.headers", "source": "e9e6fed4-d4a6-4ce4-8081-2913b298a317-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c509ed84-9993-46b1-b8dc-bd4e33f0b7da-attachment.json", "type": "application/json"}], "start": 1775519092305, "stop": 1775519092305}], "attachments": [{"name": "cURL", "source": "ec7ac807-2acb-4257-8b13-688632d2dbce-attachment.txt", "type": "text/plain"}], "start": 1775519092304, "stop": 1775519092305}, {"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": "0ed1f424-d8dd-4db1-9799-c71c5d6e8b8d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ec11636c-b302-41cb-9d31-2c627a357d6a-attachment.json", "type": "application/json"}], "start": 1775519092349, "stop": 1775519092349}, {"name": "Response → 200, trace_id: cd9cc8c4f9dfbb64659342f13e9b8b09", "status": "passed", "attachments": [{"name": "response.headers", "source": "7e2e2374-062d-4b82-9fd7-af4e5848d5fa-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "032f7c24-9f61-4de8-ba1a-62a51b4a2a69-attachment.json", "type": "application/json"}], "start": 1775519092349, "stop": 1775519092349}], "attachments": [{"name": "cURL", "source": "12e3137e-d899-46c0-8165-cb376c8069ce-attachment.txt", "type": "text/plain"}], "start": 1775519092349, "stop": 1775519092349}, {"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": "9e0c9a98-0e42-4351-8566-3b38784c6819-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "d1cc6550-c5de-400c-919a-675ae37a76c2-attachment.json", "type": "application/json"}], "start": 1775519092392, "stop": 1775519092392}, {"name": "Response → 200, trace_id: dd50fc9756665e31850fb99ae2577d74", "status": "passed", "attachments": [{"name": "response.headers", "source": "a99129ed-b6be-4620-bfa4-24d7c55e23a0-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f7cea394-54a5-40bf-86c3-10d6d2778d57-attachment.json", "type": "application/json"}], "start": 1775519092392, "stop": 1775519092392}], "attachments": [{"name": "cURL", "source": "83edf427-5b5f-4f3d-a28a-d6851bae9ce0-attachment.txt", "type": "text/plain"}], "start": 1775519092392, "stop": 1775519092392}, {"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": "198e33d9-8b87-4e35-b5c3-b9c846e2ad0b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "02c90ca5-e22b-4388-8705-f5d5300c98de-attachment.json", "type": "application/json"}], "start": 1775519092419, "stop": 1775519092419}, {"name": "Response → 200, trace_id: 89cc30f3c26c6db913e00deaaa3e514c", "status": "passed", "attachments": [{"name": "response.headers", "source": "15c82a3a-75e9-4671-9a5b-a24eb4896079-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "efa249e3-9104-43c9-9974-7b818032856d-attachment.txt", "type": "text/plain"}], "start": 1775519092419, "stop": 1775519092420}], "attachments": [{"name": "cURL", "source": "9d174ea3-8a3c-4b14-a803-5a2fdf812758-attachment.txt", "type": "text/plain"}], "start": 1775519092419, "stop": 1775519092420}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492926&pickingTaskKey=3ee7bdfa59dbc9d9e75ee5cc839f433801adec94ac976f5a5ce5a18efc3d0c1a", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "130a796f-df70-481d-b295-698157905242-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "579c5dc8-1826-455d-95d4-e9828a548ac5-attachment.json", "type": "application/json"}], "start": 1775519092448, "stop": 1775519092448}, {"name": "Response → 200, trace_id: 695e81f27985e4e99c3b7eca86dcbfcb", "status": "passed", "attachments": [{"name": "response.headers", "source": "61b2d56b-e6aa-43a9-b1d1-a4de2bff22a7-attachment.json", "type": "application/json"}], "start": 1775519092448, "stop": 1775519092448}], "attachments": [{"name": "cURL", "source": "ecb4e633-0f79-4833-b832-2e449603c797-attachment.txt", "type": "text/plain"}], "start": 1775519092448, "stop": 1775519092448}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=3ee7bdfa59dbc9d9e75ee5cc839f433801adec94ac976f5a5ce5a18efc3d0c1a&skuId=4100000000000053342&cellBarcode=QA-75519087039354624&cellId=488443", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2be890ab-7e8a-4ec4-9d7d-f9ca5886d24b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "3d26579c-4549-46db-9b25-7895bfae0440-attachment.json", "type": "application/json"}], "start": 1775519102608, "stop": 1775519102609}, {"name": "Response → 200, trace_id: 902e4b354733d8af84dc073e5a31efe0", "status": "passed", "attachments": [{"name": "response.headers", "source": "d4e746f5-0b06-4b25-ad96-ce9512dbb996-attachment.json", "type": "application/json"}], "start": 1775519102609, "stop": 1775519102609}], "attachments": [{"name": "cURL", "source": "966a48b6-9cfe-4f8b-9aa2-0a9c1ae7035b-attachment.txt", "type": "text/plain"}], "start": 1775519102608, "stop": 1775519102609}, {"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": "e1c636c0-0a46-4d11-b6df-f488e415b336-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "0406eddf-8868-43ba-831b-175b36475c33-attachment.json", "type": "application/json"}], "start": 1775519102644, "stop": 1775519102645}, {"name": "Response → 200, trace_id: a283c35e46525b436d4645e1afd2ac55", "status": "passed", "attachments": [{"name": "response.headers", "source": "ec8c6b9c-85f5-4f6c-a0a8-3f4d2477fca1-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "dd528419-4425-43d9-a731-6ee279a591be-attachment.json", "type": "application/json"}], "start": 1775519102645, "stop": 1775519102645}], "attachments": [{"name": "cURL", "source": "f66c3593-37ec-4714-8443-0e5f89259905-attachment.txt", "type": "text/plain"}], "start": 1775519102644, "stop": 1775519102645}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "1c7536fb-9d91-419b-bd90-509b435c6ef4-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "58a4815c-d821-49f8-81d8-9b64f0fdd73c-attachment.json", "type": "application/json"}], "start": 1775519102659, "stop": 1775519102659}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "b3ba2dfe-b0c9-44e0-b0f2-11f7e2cba37b-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "0742c5d9-be9c-4fe6-8df5-6ec2beefb601-attachment.json", "type": "application/json"}], "start": 1775519102696, "stop": 1775519102696}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/confirm?id=88887", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "0920d2ac-8b76-4098-b17d-0d55e3e4c49b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "6327dd1c-7bb8-4d98-bd48-9173aaac723c-attachment.json", "type": "application/json"}], "start": 1775519102718, "stop": 1775519102718}, {"name": "Response → 200, trace_id: 393ec35324574cfd9db11987459cdee3", "status": "passed", "attachments": [{"name": "response.headers", "source": "0166baab-77a6-4d40-bc73-ea347ca802a9-attachment.json", "type": "application/json"}], "start": 1775519102718, "stop": 1775519102718}], "attachments": [{"name": "cURL", "source": "3b47d4b9-45f3-43da-bc3b-04e901177fd0-attachment.txt", "type": "text/plain"}], "start": 1775519102718, "stop": 1775519102718}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775519102721, "stop": 1775519102723}], "attachments": [{"name": "log", "source": "9ba591cf-560e-4605-8a36-c3c24e6c7522-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": 1775519088641, "stop": 1775519402736, "uuid": "e2cb5495-7896-43bd-ad9a-932fa3938c1c", "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-q2602pgo"}, {"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"]}