Skip to content

Commit

Permalink
Update test_merkle_blob.py
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Jan 16, 2025
1 parent c995cc0 commit b168a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/_tests/core/data_layer/test_merkle_blob.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def test_insert_delete_loads_all_keys() -> None:

assert merkle_blob.get_keys_values() == keys_values

merkle_blob_2 = MerkleBlob(blob=bytes(merkle_blob.blob))
merkle_blob_2 = MerkleBlob(blob=bytearray(merkle_blob.blob))
for seed in range(num_keys, num_keys + extra_keys):
key, value = generate_kvid(seed)
hash = generate_hash(seed)
Expand Down

0 comments on commit b168a94

Please sign in to comment.