Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion script/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mod tests {
#[tokio::test]
async fn test_get_justification_query_service() -> Result<()> {
let client = RpcDataFetcher::new().await;
let justification = client.get_justification(337281).await?;
let justification = client.get_justification(2075796).await?;
println!("Justification: {:?}", justification);
Ok(())
}
Expand Down
2 changes: 1 addition & 1 deletion services/src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ mod tests {
}

#[test_case("test_assets/ancestry.json"; "Complex ancestry")]
#[test_case("test_assets/ancestry_missing_link_no_majority.json" => panics "Less than 2/3 of signatures are verified"; "Missing ancestor negative case")]
#[test_case("test_assets/ancestry_missing_link_no_majority.json" => panics "More than 2/3 of signatures are not verifie!"; "Missing ancestor negative case")]
#[test_case("test_assets/ancestry_missing_link_works.json"; "Missing ancestor")]
/// Tesing some complex justifications, serialized in JSON format (for readability)
fn test_complex_justification(path: &str) {
Expand Down
Loading