fix naming mistake

This commit is contained in:
protolambda 2019-04-11 19:18:53 +10:00
parent a9054fb85d
commit 7e2b0a946f
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623
1 changed files with 4 additions and 4 deletions

View File

@ -160,24 +160,24 @@ def case07_aggregate_pubkeys():
def bls_msg_hash_uncompressed_suite(configs_path: str) -> gen_typing.TestSuiteOutput:
return ("g2_uncompressed", "msg_hash_compressed", gen_suite.render_suite(
return ("g2_uncompressed", "msg_hash_uncompressed", gen_suite.render_suite(
title="BLS G2 Uncompressed msg hash",
summary="BLS G2 Uncompressed msg hash",
forks_timeline="mainnet",
forks=["phase0"],
config="mainnet",
handler="msg_hash_compressed",
handler="msg_hash_uncompressed",
test_cases=case01_message_hash_G2_uncompressed()))
def bls_msg_hash_compressed_suite(configs_path: str) -> gen_typing.TestSuiteOutput:
return ("g2_compressed", "msg_hash_uncompressed", gen_suite.render_suite(
return ("g2_compressed", "msg_hash_compressed", gen_suite.render_suite(
title="BLS G2 Compressed msg hash",
summary="BLS G2 Compressed msg hash",
forks_timeline="mainnet",
forks=["phase0"],
config="mainnet",
handler="msg_hash_uncompressed",
handler="msg_hash_compressed",
test_cases=case02_message_hash_G2_compressed()))