Skip to content

Commit

Permalink
Fix client tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ameba23 committed Jan 22, 2025
1 parent 57924d9 commit 0822704
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/client/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use crate::{
update_programs,
};

use entropy_shared::{QuoteContext, QuoteInputData};
use entropy_shared::attestation::{QuoteContext, QuoteInputData};
use entropy_testing_utils::{
constants::{TEST_PROGRAM_WASM_BYTECODE, TSS_ACCOUNTS, X25519_PUBLIC_KEYS},
helpers::{encode_verifying_key, spawn_tss_nodes_and_start_chain},
Expand Down Expand Up @@ -129,7 +129,7 @@ async fn test_change_threshold_accounts() {
let encoded_pck = encode_verifying_key(&pck.verifying_key()).unwrap().to_vec();

let quote = {
let input_data = entropy_shared::QuoteInputData::new(
let input_data = QuoteInputData::new(
tss_public_key,
*x25519_public_key.as_bytes(),
nonce,
Expand Down Expand Up @@ -368,7 +368,7 @@ async fn test_set_session_key_and_declare_validate() {
let encoded_pck = encode_verifying_key(&pck.verifying_key()).unwrap().to_vec();

let quote = {
let input_data = entropy_shared::QuoteInputData::new(
let input_data = QuoteInputData::new(
tss_public_key,
*x25519_public_key.as_bytes(),
nonce,
Expand Down

0 comments on commit 0822704

Please sign in to comment.