Skip to content

Commit

Permalink
fixup! Address code review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pbeza committed Nov 26, 2024
1 parent 29fac8b commit 4ca5a10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/node/api_server/src/web3/tests/unstable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ impl HttpTest for GetTeeProofsTest {
) -> anyhow::Result<()> {
let batch_no = L1BatchNumber(1337);
let tee_type = TeeType::Sgx;
let proof = client.tee_proofs(batch_no, Some(tee_type)).await;
let proof = client.tee_proofs(batch_no, Some(tee_type)).await?;

assert!(matches!(proof, Err(ClientError::Call { .. })));
assert!(proof.is_empty());

let pubkey = vec![0xDE, 0xAD, 0xBE, 0xEF];
let attestation = vec![0xC0, 0xFF, 0xEE];
Expand Down

0 comments on commit 4ca5a10

Please sign in to comment.