fix: remove redundant error messages in admin functions (#7953)

Closes #7938

Signed-off-by: yxrxy <yxrxytrigger@gmail.com>
This commit is contained in:
yxrxy
2026-04-17 08:21:22 +00:00
committed by GitHub
parent 0abf7c1596
commit 6c924efc2f
8 changed files with 10 additions and 10 deletions
@@ -128,7 +128,7 @@ mod tests {
};
let result = f.invoke_async_with_args(func_args).await.unwrap_err();
assert_eq!(
"Execution error: Handler error: Missing TableMutationHandler, not expected",
"Execution error: Missing TableMutationHandler, not expected",
result.to_string()
);
}
@@ -355,7 +355,7 @@ mod tests {
};
let result = f.invoke_async_with_args(func_args).await.unwrap_err();
assert_eq!(
"Execution error: Handler error: Missing TableMutationHandler, not expected",
"Execution error: Missing TableMutationHandler, not expected",
result.to_string()
);
}
@@ -173,7 +173,7 @@ mod tests {
};
let result = f.invoke_async_with_args(func_args).await.unwrap_err();
assert_eq!(
"Execution error: Handler error: Missing ProcedureServiceHandler, not expected",
"Execution error: Missing ProcedureServiceHandler, not expected",
result.to_string()
);
}
+1 -1
View File
@@ -149,7 +149,7 @@ mod test {
let result = f.invoke_async_with_args(func_args).await.unwrap_err();
assert_eq!(
"Execution error: Handler error: Missing FlowServiceHandler, not expected",
"Execution error: Missing FlowServiceHandler, not expected",
result.to_string()
);
}