diff --git a/tests/mismatched_op.rs b/tests/mismatched_op.rs index 2d6ff5fa..d0ea1826 100644 --- a/tests/mismatched_op.rs +++ b/tests/mismatched_op.rs @@ -6,8 +6,8 @@ fn test_mismatched_op() { assert_eq!( engine.eval::("60 + \"hello\""), - Err(EvalAltResult::ErrorFunctionNotFound( - "+ (i64,alloc::string::String)".into() + Err(EvalAltResult::ErrorMismatchOutputType( + "alloc::string::String".into() )) ); }