Skip to content
Snippets Groups Projects
Commit 0006deb3 authored by Hugo Trentesaux's avatar Hugo Trentesaux
Browse files

fix same bug in cucumber test

parent 1e75d56f
No related branches found
No related tags found
1 merge request!159Fix certification renewal
Pipeline #19615 passed
......@@ -416,7 +416,7 @@ async fn should_be_certified_by(
.await?;
// look for certification by issuer/receiver pair
match issuers.binary_search_by(|(issuer_, _)| issuer_index.cmp(issuer_)) {
match issuers.binary_search_by(|(issuer_, _)| issuer_.cmp(&issuer_index)) {
Ok(_) => Ok(()),
Err(_) => Err(anyhow::anyhow!(
"no certification found from {} to {}: {:?}",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment