File tree 1 file changed +4
-5
lines changed
test/test-manager/test_macro/src
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -151,17 +151,16 @@ fn create_test(test_function: TestFunction) -> proc_macro2::TokenStream {
151
151
. collect ( ) ;
152
152
153
153
let func_name = test_function. name ;
154
+ let function_error = format ! ( "{func_name} failed" ) ;
154
155
let wrapper_closure = quote ! {
155
156
|test_context: crate :: tests:: TestContext ,
156
157
rpc: test_rpc:: ServiceClient ,
157
158
mullvad_client: Option <MullvadProxyClient >|
158
159
{
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" ) ;
163
162
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 )
165
164
} )
166
165
}
167
166
} ;
You can’t perform that action at this time.
0 commit comments