Fix test
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nyyu 2021-03-14 14:37:27 +01:00
parent 3212938a2a
commit 65e1d65428
2 changed files with 14 additions and 14 deletions

View file

@ -395,8 +395,8 @@ mod tests {
assert!(result.is_some());
match result {
Some(value) => {
assert!(value.0.len() > 0);
assert!(value.1 > 0.);
assert!(!value.0.is_empty());
assert!(value.1.win_rate > 0.);
}
None => assert!(false),
}