Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzejkop committed Oct 18, 2024
1 parent 28b34c3 commit 5f65706
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/database/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,11 @@ mod test {
);

for (idx, identity) in identities.iter().copied().enumerate() {
db.insert_pending_identity(idx, &identity, &roots[idx], &roots[idx + 1])
println!("idx = {idx}");
println!("roots[idx] = {}", roots[idx]);
println!("roots[idx + 1] = {}", roots[idx + 1]);

db.insert_pending_identity(idx, &identity, &roots[idx + 1], &roots[idx])
.await?;
}

Expand Down

0 comments on commit 5f65706

Please sign in to comment.