1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-06-26 15:11:37 +00:00

Fix some tests

This commit is contained in:
Lachlan Sneff
2019-02-02 16:02:28 -08:00
parent 6a66ec3407
commit dcc75b98ba
4 changed files with 10 additions and 3 deletions
lib
runtime-core
runtime

@ -187,6 +187,13 @@ impl From<RuntimeError> for Error {
}
}
impl From<ResolveError> for Error {
fn from(resolve_err: ResolveError) -> Self {
Error::ResolveError(resolve_err)
}
}
impl From<CallError> for Error {
fn from(call_err: CallError) -> Self {
Error::CallError(call_err)