summaryrefslogtreecommitdiff
path: root/macros/src/mock.rs
diff options
context:
space:
mode:
Diffstat (limited to 'macros/src/mock.rs')
-rw-r--r--macros/src/mock.rs10
1 files changed, 1 insertions, 9 deletions
diff --git a/macros/src/mock.rs b/macros/src/mock.rs
index 8828b17..d2eb451 100644
--- a/macros/src/mock.rs
+++ b/macros/src/mock.rs
@@ -247,15 +247,7 @@ fn create_mock_function(
))
.with_generic_params::<#(#type_param_idents,)*>();
- let Some(returning) = &expectation.returning else {
- panic!(concat!(
- "Expectation for function",
- stringify!(#func_ident),
- " is missing a function to call")
- );
- };
-
- returning(#(#args),*)
+ expectation.call_returning(#(#args),*)
}
})
.unwrap_or_abort(),