From cb03ac87cf9815db59c0d037ce8639ce44219ed8 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 16 Oct 2024 14:37:08 +0200 Subject: [PATCH] fixup! fix: use NO_CONTENT instead of NOT_FOUND for no job Signed-off-by: Harald Hoyer --- core/node/proof_data_handler/src/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/node/proof_data_handler/src/tests.rs b/core/node/proof_data_handler/src/tests.rs index 240940506f8e..a10044cacd9c 100644 --- a/core/node/proof_data_handler/src/tests.rs +++ b/core/node/proof_data_handler/src/tests.rs @@ -31,7 +31,7 @@ async fn request_tee_proof_inputs() { L2ChainId::default(), ); let test_cases = vec![ - (json!({ "tee_type": "sgx" }), StatusCode::NOT_FOUND), + (json!({ "tee_type": "sgx" }), StatusCode::NO_CONTENT), ( json!({ "tee_type": "Sgx" }), StatusCode::UNPROCESSABLE_ENTITY,