Skip to content

Commit 42f1b65

Browse files
committed
fix test compilation
1 parent 9498444 commit 42f1b65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/all/linker.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,8 +332,8 @@ fn alias_one() -> Result<()> {
332332
assert!(linker.alias("a", "b", "c", "d").is_err());
333333
linker.func_wrap("a", "b", || {})?;
334334
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());
335+
assert!(linker.get(&mut store, "a", "b").is_ok());
336+
assert!(linker.get(&mut store, "c", "d").is_ok());
337337
Ok(())
338338
}
339339

0 commit comments

Comments
 (0)