clippy fixes
This commit is contained in:
parent
e318f78250
commit
92e369beab
1 changed files with 3 additions and 3 deletions
|
@ -41,7 +41,7 @@ mod test {
|
||||||
//then
|
//then
|
||||||
drop(dir);
|
drop(dir);
|
||||||
|
|
||||||
assert_eq!(result, true);
|
assert!(result);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -66,7 +66,7 @@ mod test {
|
||||||
//then
|
//then
|
||||||
drop(dir);
|
drop(dir);
|
||||||
|
|
||||||
assert_eq!(result, false);
|
assert!(!result);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -93,7 +93,7 @@ mod test {
|
||||||
//then
|
//then
|
||||||
drop(dir);
|
drop(dir);
|
||||||
|
|
||||||
assert_eq!(result, false);
|
assert!(!result);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue