Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ninokeldishvili committed Oct 18, 2024
1 parent dbce0e0 commit 1f42407
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/author/authors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,12 @@ mod tests {
let addresses = result.unwrap();

// Assert that the length of the addresses is 1
assert_eq!(addresses.len(), 1, "Expected 1 valid address, got {:?}", addresses.len());
assert_eq!(
addresses.len(),
1,
"Expected 1 valid address, got {:?}",
addresses.len()
);
// Optionally, you can also assert that the address is the expected one
let expected_address = "0xc0d477556c25c9d67e1f57245c7453da776b51cf";
assert_eq!(addresses[0], expected_address, "Unexpected address");
Expand Down

0 comments on commit 1f42407

Please sign in to comment.