Skip to content

Commit 9b068ad

Browse files
Add function name to test_function error
1 parent 9a2e607 commit 9b068ad

File tree

1 file changed

+4
-5
lines changed
  • test/test-manager/test_macro/src

1 file changed

+4
-5
lines changed

test/test-manager/test_macro/src/lib.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -151,17 +151,16 @@ fn create_test(test_function: TestFunction) -> proc_macro2::TokenStream {
151151
.collect();
152152

153153
let func_name = test_function.name;
154+
let function_error = format!("{func_name} failed");
154155
let wrapper_closure = quote! {
155156
|test_context: crate::tests::TestContext,
156157
rpc: test_rpc::ServiceClient,
157158
mullvad_client: Option<MullvadProxyClient>|
158159
{
159-
let mullvad_client = match mullvad_client {
160-
Some(client) => client,
161-
None => unreachable!("invalid mullvad client")
162-
};
160+
use anyhow::Context;
161+
let mullvad_client = mullvad_client.expect("A valid MullvadProxyClient");
163162
Box::pin(async move {
164-
#func_name(test_context, rpc, mullvad_client).await.map_err(Into::into)
163+
#func_name(test_context, rpc, mullvad_client).await.context(#function_error)
165164
})
166165
}
167166
};

0 commit comments

Comments
 (0)