From c2309d278e203b188dd39200a27aac0871b9d43a Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Wed, 16 Jul 2025 14:05:34 -0400 Subject: [PATCH] unskip and fix to order agnostic check --- chia/_tests/core/data_layer/test_data_rpc.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/chia/_tests/core/data_layer/test_data_rpc.py b/chia/_tests/core/data_layer/test_data_rpc.py index c9d15af1aa60..7740ed1366a9 100644 --- a/chia/_tests/core/data_layer/test_data_rpc.py +++ b/chia/_tests/core/data_layer/test_data_rpc.py @@ -3712,7 +3712,6 @@ async def test_multistore_update( await data_rpc_api.multistore_batch_update({"store_updates": store_updates}) -@pytest.mark.skip @pytest.mark.limit_consensus_modes(reason="does not depend on consensus rules") @pytest.mark.anyio async def test_unsubmitted_batch_db_migration( @@ -3804,7 +3803,9 @@ class ModifiedStatus(IntEnum): update_tx_rec1 = res["tx_id"] await farm_block_with_spend(full_node_api, ph, update_tx_rec1, wallet_rpc_api) keys = await data_rpc_api.get_keys({"id": store_id.hex()}) - assert keys == {"keys": ["0x30303031", "0x30303030"]} + # order agnostic comparison of the list + keys["keys"] = set(keys["keys"]) + assert keys == {"keys": {"0x30303031", "0x30303030"}} @pytest.mark.limit_consensus_modes(reason="does not depend on consensus rules")