diff options
Diffstat (limited to 'macros/src/expectation.rs')
-rw-r--r-- | macros/src/expectation.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/src/expectation.rs b/macros/src/expectation.rs index ff3d192..4fc1451 100644 --- a/macros/src/expectation.rs +++ b/macros/src/expectation.rs @@ -13,6 +13,7 @@ use syn::{ GenericArgument, GenericParam, Generics, + ImplItemMethod, ItemStruct, Lifetime, Path, @@ -20,7 +21,6 @@ use syn::{ Receiver, ReturnType, Token, - TraitItemMethod, Type, TypeBareFn, TypePath, @@ -60,7 +60,7 @@ pub struct Expectation impl Expectation { - pub fn new(mock: &Ident, item_method: &TraitItemMethod) -> Self + pub fn new(mock: &Ident, item_method: &ImplItemMethod) -> Self { let ident = create_expectation_ident(mock, &item_method.sig.ident); |