Skip to content

Commit

Permalink
Fix clippy error introduced in #226
Browse files Browse the repository at this point in the history
  • Loading branch information
FreezyLemon committed May 1, 2024
1 parent 6a5c0fa commit 6ac1fc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ mod tests {
#[test]
fn test_sync_send() {
// Error types should implement Sync and Send
let _ = assert_sync::<StatsError>();
let _ = assert_send::<StatsError>();
assert_sync::<StatsError>();
assert_send::<StatsError>();
}
}

0 comments on commit 6ac1fc7

Please sign in to comment.