Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
fchirica committed Nov 5, 2024
1 parent 72e271d commit 3aeffd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions chia/_tests/core/data_layer/test_data_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3210,7 +3210,7 @@ async def test_pagination_cmds(
if max_page_size is None or max_page_size == 100:
assert keys == {
"keys": ["0x61616161", "0x6161"],
"root_hash": "0x889a4a61b17be799ae9d36831246672ef857a24091f54481431a83309d4e890e",
"root_hash": "0x3f4ae7b8e10ef48b3114843537d5def989ee0a3b6568af7e720a71730f260fa1",
"success": True,
"total_bytes": 6,
"total_pages": 1,
Expand All @@ -3230,7 +3230,7 @@ async def test_pagination_cmds(
"value": "0x6161",
},
],
"root_hash": "0x889a4a61b17be799ae9d36831246672ef857a24091f54481431a83309d4e890e",
"root_hash": "0x3f4ae7b8e10ef48b3114843537d5def989ee0a3b6568af7e720a71730f260fa1",
"success": True,
"total_bytes": 9,
"total_pages": 1,
Expand All @@ -3247,7 +3247,7 @@ async def test_pagination_cmds(
elif max_page_size == 5:
assert keys == {
"keys": ["0x61616161"],
"root_hash": "0x889a4a61b17be799ae9d36831246672ef857a24091f54481431a83309d4e890e",
"root_hash": "0x3f4ae7b8e10ef48b3114843537d5def989ee0a3b6568af7e720a71730f260fa1",
"success": True,
"total_bytes": 6,
"total_pages": 2,
Expand All @@ -3261,7 +3261,7 @@ async def test_pagination_cmds(
"value": "0x61",
}
],
"root_hash": "0x889a4a61b17be799ae9d36831246672ef857a24091f54481431a83309d4e890e",
"root_hash": "0x3f4ae7b8e10ef48b3114843537d5def989ee0a3b6568af7e720a71730f260fa1",
"success": True,
"total_bytes": 9,
"total_pages": 2,
Expand Down

0 comments on commit 3aeffd4

Please sign in to comment.