diff --git a/tests/end_to_end_integration.rs b/tests/end_to_end_integration.rs index 29daa6e..47dc093 100644 --- a/tests/end_to_end_integration.rs +++ b/tests/end_to_end_integration.rs @@ -197,7 +197,7 @@ async fn test_full_end_to_end_example() -> Result<(), Box // "print(\"Hello from authenticated client!\"); 42", // "let x = 10; let y = 20; x + y", // "print(\"Testing authentication...\"); \"success\"", - // "CALLER_PUBLIC_KEY", + // "CALLER_ID", // ]; // for (i, script) in test_scripts.iter().enumerate() { @@ -206,9 +206,9 @@ async fn test_full_end_to_end_example() -> Result<(), Box // match client.play(script.to_string()).await { // Ok(result) => { // info!("✅ Script {} result: {}", i + 1, result.output); - // if script == &"CALLER_PUBLIC_KEY" { + // if script == &"CALLER_ID" { // assert_eq!(result.output, expected_public_key_hex); - // info!("✅ CALLER_PUBLIC_KEY verification successful!"); + // info!("✅ CALLER_ID verification successful!"); // } // } // Err(e) => {