We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9498444 commit 42f1b65Copy full SHA for 42f1b65
tests/all/linker.rs
@@ -332,8 +332,8 @@ fn alias_one() -> Result<()> {
332
assert!(linker.alias("a", "b", "c", "d").is_err());
333
linker.func_wrap("a", "b", || {})?;
334
assert!(linker.alias("a", "b", "c", "d").is_ok());
335
- assert!(linker.get(&mut store, "a", "b").is_some());
336
- assert!(linker.get(&mut store, "c", "d").is_some());
+ assert!(linker.get(&mut store, "a", "b").is_ok());
+ assert!(linker.get(&mut store, "c", "d").is_ok());
337
Ok(())
338
}
339
0 commit comments