From 6c141b5b46905d05bc1626e7afe4340af00c7f35 Mon Sep 17 00:00:00 2001 From: Raul Victor Trombin Date: Tue, 10 Sep 2024 20:31:41 -0300 Subject: [PATCH] fix: Fix test, extract reponse on client error --- src/build/cli_util.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/cli_util.hbs b/src/build/cli_util.hbs index 2fd0bee4f..25ca5c7eb 100644 --- a/src/build/cli_util.hbs +++ b/src/build/cli_util.hbs @@ -51,7 +51,7 @@ where match resp \{ Ok(r) => Ok(r), - Err(ApiError::Failure(_, _, r)) => Ok(r.into_inner()), + Err(ApiError::Failure(_, _, r)) => Ok(r), Err(e) => return Err(e.into()), } }