Skip to content

Commit

Permalink
Merge pull request #1045 from ethereum/fix-shuffling-gen
Browse files Browse the repository at this point in the history
update shuffling func name
  • Loading branch information
protolambda committed May 5, 2019
2 parents c011feb + 6f8d011 commit 4e179fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_generators/shuffling/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def shuffling_case(seed: spec.Bytes32, count: int):
yield 'seed', '0x' + seed.hex()
yield 'count', count
yield 'shuffled', [spec.get_permuted_index(i, count, seed) for i in range(count)]
yield 'shuffled', [spec.get_shuffled_index(i, count, seed) for i in range(count)]


@to_tuple
Expand Down

0 comments on commit 4e179fb

Please sign in to comment.