Additional tests for BWU (#74)

This commit is contained in:
vms
2021-04-13 12:36:14 +03:00
committed by GitHub
parent ab14b987ea
commit 820e292f15
24 changed files with 701 additions and 257 deletions

View File

@ -131,10 +131,7 @@ impl WITInstance {
Ok((start_index + idx as usize, func))
}
None => Err(FCEError::NoSuchModule(format!(
"trying to get imports from module with name {} that is not loaded",
import.namespace
))),
None => Err(FCEError::NoSuchModule(import.namespace.to_string())),
})
.collect::<FCEResult<HashMap<_, _>>>()
}