merge and fix tests
Some checks failed
Rhai Tests / Run Rhai Tests (push) Has been cancelled

This commit is contained in:
timurgordon
2025-05-23 21:46:11 +03:00
parent fedf957079
commit c0e11c6510
8 changed files with 106 additions and 26 deletions

View File

@@ -22,7 +22,7 @@ if create_key_space(space_name, password) {
print(`✓ Key space "${space_name}" created successfully`);
// Create sender keypair
if create_keypair(sender_name, password) {
if create_keypair(sender_name) {
print(`✓ Sender keypair "${sender_name}" created successfully`);
} else {
print(`✗ Failed to create sender keypair "${sender_name}"`);
@@ -30,7 +30,7 @@ if create_key_space(space_name, password) {
}
// Create recipient keypair
if create_keypair(recipient_name, password) {
if create_keypair(recipient_name) {
print(`✓ Recipient keypair "${recipient_name}" created successfully`);
} else {
print(`✗ Failed to create recipient keypair "${recipient_name}"`);