diff --git a/src/back/msl/mod.rs b/src/back/msl/mod.rs index 120e8532a5..0b067a329f 100644 --- a/src/back/msl/mod.rs +++ b/src/back/msl/mod.rs @@ -76,9 +76,9 @@ pub enum Error { Validation, } -#[derive(Debug, thiserror::Error)] +#[derive(Clone, Debug, PartialEq, thiserror::Error)] pub enum EntryPointError { - #[error("bind source for {0:?} is missing from the map")] + #[error("mapping of {0:?} is missing")] MissingBinding(BindSource), }