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

fix same bug in cucumber test

parent b29d331b
No related branches found
No related tags found
No related merge requests found
Pipeline #19617 failed
This commit is part of merge request !151. Comments created here will be created in the context of that merge request.
...@@ -425,7 +425,7 @@ async fn should_be_certified_by( ...@@ -425,7 +425,7 @@ async fn should_be_certified_by(
.await?; .await?;
// look for certification by issuer/receiver pair // 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(()), Ok(_) => Ok(()),
Err(_) => Err(anyhow::anyhow!( Err(_) => Err(anyhow::anyhow!(
"no certification found from {} to {}: {:?}", "no certification found from {} to {}: {:?}",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment