Skip to content

Commit

Permalink
it: fix to specify true as debug parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele committed Feb 6, 2024
1 parent 8b97ea9 commit 78d92d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ mod tests {

let env = host::get_environment().unwrap();
let km = EnclaveKeyManager::new(&env.home).unwrap();
let enclave = Enclave::create(ENCLAVE_FILE, false, km, env.store.clone()).unwrap();
let enclave = Enclave::create(ENCLAVE_FILE, true, km, env.store.clone()).unwrap();

match std::env::var(ENV_SETUP_NODES).map(|v| v.to_lowercase()) {
Ok(v) if v == "false" => run_test(&enclave).unwrap(),
Expand Down

0 comments on commit 78d92d0

Please sign in to comment.