tests: refactor: rename random_group_element_... -> random_ge_...

The rename was done with the following command:

$ sed -i 's/random_group_element_/random_ge_/g' $(git grep -l random_group_element_)
This commit is contained in:
Sebastian Falbesoner
2024-05-27 02:01:55 +02:00
parent 06bff6dec8
commit 59db007f0f
2 changed files with 27 additions and 27 deletions

View File

@@ -229,7 +229,7 @@ void run_ellswift_tests(void) {
secp256k1_ge g, g2;
secp256k1_pubkey pubkey, pubkey2;
/* Generate random public key and random randomizer. */
random_group_element_test(&g);
random_ge_test(&g);
secp256k1_pubkey_save(&pubkey, &g);
secp256k1_testrand256(rnd32);
/* Convert the public key to ElligatorSwift and back. */