dev: Use unwrap to see error message in test
(cherry picked from commit c1c86ebee4418d37053add884b9c1258b22dd7ed)
This commit is contained in:
parent
38aab588fd
commit
36ea74c707
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
fn auto_works() {
|
fn auto_works() {
|
||||||
let res = Store::open("auto");
|
let res = Store::open("auto");
|
||||||
assert!(res.is_ok());
|
res.unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue