{"name": "test_no_goods_confirm_zero_picking[Uzbekistan | YaMarket]", "status": "failed", "statusDetails": {"message": "AssertionError: 4278192462 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 0x76debdd94950>\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 0x76debdd52b10>)\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 = 4278192462, 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: 4278192462 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": "41d40fda-ef91-416e-a764-e881f7eec0c9-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "58c170f0-8e27-4693-8728-84ddb4f8af8d-attachment.json", "type": "application/json"}], "start": 1775346739593, "stop": 1775346739593}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "58bdfc75-c590-4e9a-b731-57885b84a54b-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "6223c769-601e-46b2-9c5c-7e1ccba58745-attachment.json", "type": "application/json"}], "start": 1775346739601, "stop": 1775346739601}], "start": 1775346739594, "stop": 1775346739604}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "fd8f149f-9bbd-4862-8fe8-2f8854339112-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "4f389bb6-6640-41fb-bb4b-165c2d90f8cd-attachment.json", "type": "application/json"}], "start": 1775346739615, "stop": 1775346739615}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "3b820941-fdbb-4fd1-9658-ed1bf621c643-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "62c016b8-7f21-4778-b5fe-b5610e12f4a5-attachment.json", "type": "application/json"}], "start": 1775346739616, "stop": 1775346739616}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "0dba0201-4061-43f4-ac21-1190646cd818-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "34c9a37a-a0d3-4dd8-93b8-738742d61729-attachment.json", "type": "application/json"}], "start": 1775346739617, "stop": 1775346739617}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "be9bebf5-6049-400b-af98-911b6a19210e-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "1044f582-8ee2-4c53-80a1-1a2ae6088cd6-attachment.json", "type": "application/json"}], "start": 1775346739618, "stop": 1775346739618}, {"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": "4c5d6dfe-ad62-4d18-b140-51c239ea5b00-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "41f0341a-de73-4470-ba46-e35e1a90ea23-attachment.json", "type": "application/json"}], "start": 1775346739651, "stop": 1775346739652}, {"name": "Response → 200, trace_id: 494d949ec7f2a4de534671491a4c90d7", "status": "passed", "attachments": [{"name": "response.headers", "source": "7bc35ca8-5fb0-4554-98a9-5e2377594a29-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3db31d31-489f-43a2-abe0-57a1b29afffd-attachment.json", "type": "application/json"}], "start": 1775346739652, "stop": 1775346739652}], "attachments": [{"name": "cURL", "source": "f5d3b72e-b804-4401-91c3-39952502e34c-attachment.txt", "type": "text/plain"}], "start": 1775346739651, "stop": 1775346739652}], "start": 1775346739618, "stop": 1775346739655}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "81ed2faa-5def-4a2f-8c67-87f32dd51269-attachment.json", "type": "application/json"}, {"name": "Response", "source": "30cd95c9-0c1b-4718-a452-621635ea9a6d-attachment.json", "type": "application/json"}], "start": 1775346739683, "stop": 1775346739717}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775346739718, "stop": 1775346742092}, {"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": "3c16ecc3-0927-4846-90c8-d2511778c56d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7fe1e910-4e13-4dac-b642-442250e1fad8-attachment.json", "type": "application/json"}], "start": 1775346744873, "stop": 1775346744873}, {"name": "Response → 200, trace_id: a897d5075c46ecbe9d9eb2c3ee163e1f", "status": "passed", "attachments": [{"name": "response.headers", "source": "1568b6a0-a8ac-41b4-9c7c-a5f84d778d1b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "da9754f5-5848-4a05-aca2-76f0f5185b93-attachment.json", "type": "application/json"}], "start": 1775346744873, "stop": 1775346744873}], "attachments": [{"name": "cURL", "source": "1f2fbd38-fa7a-4738-9d55-f57c0fd84d81-attachment.txt", "type": "text/plain"}], "start": 1775346744873, "stop": 1775346744873}, {"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": "febacb49-f44a-495a-b5e1-8dfd9b97dcd5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "59ded7ea-c6c3-499e-8e73-b226ea036498-attachment.json", "type": "application/json"}], "start": 1775346744927, "stop": 1775346744927}, {"name": "Response → 200, trace_id: 790ee98dff2da262b872c0c14860e010", "status": "passed", "attachments": [{"name": "response.headers", "source": "9a5f6f08-95f5-418b-9eb9-6f9169a0020f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b6186818-ed36-4fec-840c-6f0acb57e454-attachment.json", "type": "application/json"}], "start": 1775346744927, "stop": 1775346744928}], "attachments": [{"name": "cURL", "source": "bca1e833-cef2-4566-8c47-621cae912531-attachment.txt", "type": "text/plain"}], "start": 1775346744927, "stop": 1775346744928}, {"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": "1034fa9c-09f3-48ce-b666-f0c80fd7d496-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "12182917-2252-43a3-a7ef-568cdeb7057e-attachment.json", "type": "application/json"}], "start": 1775346744972, "stop": 1775346744973}, {"name": "Response → 200, trace_id: d489160bc52f2fe3a215b0e29b04f614", "status": "passed", "attachments": [{"name": "response.headers", "source": "b91f08fc-fdd2-4c46-b39f-98fffcef7aa7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "91f6eada-1695-41e0-8344-cf3a95f30c71-attachment.json", "type": "application/json"}], "start": 1775346744973, "stop": 1775346744973}], "attachments": [{"name": "cURL", "source": "fa818bdd-1509-4f63-a072-8d5625641d79-attachment.txt", "type": "text/plain"}], "start": 1775346744972, "stop": 1775346744973}, {"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": "c619df2d-ba22-4941-88ec-645379a1af96-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2a0ce689-a49f-4478-9cf9-34860d59772d-attachment.json", "type": "application/json"}], "start": 1775346745014, "stop": 1775346745014}, {"name": "Response → 200, trace_id: 91f68f0455c84a0f47cef38e10278468", "status": "passed", "attachments": [{"name": "response.headers", "source": "f962f373-529f-4101-977f-4b19b63106ca-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f778d87e-8e69-4e19-b05e-2ccccc8e0247-attachment.json", "type": "application/json"}], "start": 1775346745014, "stop": 1775346745014}], "attachments": [{"name": "cURL", "source": "b7c9cc19-4a6a-4646-9695-1e7a6b8ae38d-attachment.txt", "type": "text/plain"}], "start": 1775346745014, "stop": 1775346745014}, {"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": "92308489-a649-44c3-a871-210baf7bc5da-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e2100edb-382f-4c09-a025-c70f6d178f3c-attachment.json", "type": "application/json"}], "start": 1775346745044, "stop": 1775346745044}, {"name": "Response → 200, trace_id: 2bcbeaf00e995022653a664076fc7951", "status": "passed", "attachments": [{"name": "response.headers", "source": "8c8b39e4-72ab-4e1d-8dcd-f0afca7ef78a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "514952c3-6666-4ae8-8e37-52f878e097ec-attachment.txt", "type": "text/plain"}], "start": 1775346745044, "stop": 1775346745044}], "attachments": [{"name": "cURL", "source": "bed3d0c5-2673-482a-a963-888bd12a78b1-attachment.txt", "type": "text/plain"}], "start": 1775346745044, "stop": 1775346745044}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492778&pickingTaskKey=6c1eebcdb8c45086dbc2d6575f8df93e4f91f55aa7e6e84d434d0a709ddb9709", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c9213d31-3129-4c0d-931b-a8e81c550ae7-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "be07ea27-dce3-4548-bb69-4e19d9346235-attachment.json", "type": "application/json"}], "start": 1775346745073, "stop": 1775346745074}, {"name": "Response → 200, trace_id: 1d1136255084c07f0a77db1084dc886e", "status": "passed", "attachments": [{"name": "response.headers", "source": "c27924d7-b678-4a15-8e61-1dea8836fe01-attachment.json", "type": "application/json"}], "start": 1775346745074, "stop": 1775346745074}], "attachments": [{"name": "cURL", "source": "00e8739d-3c9d-4066-97a3-3f01505f019c-attachment.txt", "type": "text/plain"}], "start": 1775346745073, "stop": 1775346745074}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=6c1eebcdb8c45086dbc2d6575f8df93e4f91f55aa7e6e84d434d0a709ddb9709&skuId=4100000000000052933&cellBarcode=QA-75346738305304576&cellId=488115", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "94f8a858-8cde-4379-8616-1c85c82c38ae-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "65c1453c-5439-4cc9-87da-8bce019acf71-attachment.json", "type": "application/json"}], "start": 1775346755263, "stop": 1775346755263}, {"name": "Response → 200, trace_id: fb24e005bdb537d9c2b88fbfb222a27b", "status": "passed", "attachments": [{"name": "response.headers", "source": "2accc061-c53c-4bea-aba0-8bd263bbff68-attachment.json", "type": "application/json"}], "start": 1775346755263, "stop": 1775346755263}], "attachments": [{"name": "cURL", "source": "255a2f24-3e49-4389-bc50-3ccd23574704-attachment.txt", "type": "text/plain"}], "start": 1775346755262, "stop": 1775346755263}, {"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": "78923311-5682-4a20-9244-ba81bff142b7-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "523e2025-11b5-456c-8dbb-cb1e0cb0eec0-attachment.json", "type": "application/json"}], "start": 1775346755295, "stop": 1775346755296}, {"name": "Response → 200, trace_id: 7e3de06568528e79e2607db284d972da", "status": "passed", "attachments": [{"name": "response.headers", "source": "a7da7df7-6a28-4518-be94-6ad8652b4445-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "48ff8b4e-ab39-487f-9576-d5a531532650-attachment.json", "type": "application/json"}], "start": 1775346755296, "stop": 1775346755296}], "attachments": [{"name": "cURL", "source": "30d622f3-294c-4f39-8936-ae1a7b8c4817-attachment.txt", "type": "text/plain"}], "start": 1775346755295, "stop": 1775346755296}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "3d156f93-65f4-4681-a2ee-2cae7acabcc6-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "405a82a2-16de-4ac3-b69c-5d41ab03710a-attachment.json", "type": "application/json"}], "start": 1775346755308, "stop": 1775346755308}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "bf6eca6b-5bf9-409d-b9b8-943faa43bba5-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "de54b7fb-187e-4c0a-8b00-6dc867fe79d1-attachment.json", "type": "application/json"}], "start": 1775346755370, "stop": 1775346755370}, {"name": "POST → https://dm-wms-be-service-availability.k8s-review.dailymail-tech.uz/lost-goods/confirm?id=88871", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f88cc2ea-910b-40e6-8760-a5ee0a2d46b0-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a52c7f5a-9c5d-4a7f-bb7c-c13dd3dbbdbe-attachment.json", "type": "application/json"}], "start": 1775346755392, "stop": 1775346755392}, {"name": "Response → 200, trace_id: bcd2738135df4103db050e433a4879fa", "status": "passed", "attachments": [{"name": "response.headers", "source": "85a51f2e-dd06-484a-a166-669ced633887-attachment.json", "type": "application/json"}], "start": 1775346755392, "stop": 1775346755392}], "attachments": [{"name": "cURL", "source": "49eda48c-6f73-439d-9dcb-45b857022561-attachment.txt", "type": "text/plain"}], "start": 1775346755392, "stop": 1775346755393}, {"name": "Waiter function: wait_lost_good", "status": "passed", "start": 1775346755395, "stop": 1775346755397}], "attachments": [{"name": "log", "source": "96898a00-37f9-4441-a48d-d2ec652333ff-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": 1775346739573, "stop": 1775347055410, "uuid": "ddbbc6fc-759b-448c-ac62-5b733b995d65", "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-immwplba"}, {"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"]}