Skip to content

Commit

Permalink
Merge pull request #3060 from ethereum/fix-bls-test-file-format
Browse files Browse the repository at this point in the history
Fix BLS test case file name
  • Loading branch information
hwwhww authored Oct 26, 2022
2 parents af8c5bf + 6c7922d commit aac851f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/generators/bls/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def case07_eth_fast_aggregate_verify():
tampered_signature = aggregate_signature[:-4] + b'\xff\xff\xff\xff'
identifier = f'{pubkeys_serial}_{encode_hex(message)}'
assert not spec.eth_fast_aggregate_verify(pubkeys, message, tampered_signature)
yield 'eth_fast_aggregate_verify_tampered_signature_{(hash(bytes(identifier, "utf-8"))[:8]).hex()}', {
yield f'eth_fast_aggregate_verify_tampered_signature_{(hash(bytes(identifier, "utf-8"))[:8]).hex()}', {
'input': {
'pubkeys': pubkeys_serial,
'message': encode_hex(message),
Expand Down

0 comments on commit aac851f

Please sign in to comment.