crypto: Fix an invalid assert in the crypto bench

This commit is contained in:
Damir Jelić 2021-04-15 15:01:56 +02:00
parent 02331fa325
commit 9e817a623b

View file

@ -213,7 +213,7 @@ pub fn room_key_sharing(c: &mut Criterion) {
.await
.unwrap();
assert!(requests.len() >= 8);
assert!(!requests.is_empty());
for request in requests {
machine
@ -249,7 +249,7 @@ pub fn room_key_sharing(c: &mut Criterion) {
.await
.unwrap();
assert!(requests.len() >= 8);
assert!(!requests.is_empty());
for request in requests {
machine