Skip to content

Commit

Permalink
Fix a merge artifact from #47
Browse files Browse the repository at this point in the history
  • Loading branch information
fjarri committed Oct 9, 2024
1 parent 35ccd95 commit d4941e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hazmat/sieve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ mod tests {
#[test]
fn sieve_with_max_start() {
let start = U64::MAX;
let mut sieve = Sieve::new(&start, NonZeroU32::new(U64::BITS).unwrap(), false);
let mut sieve = Sieve::new(start, NonZeroU32::new(U64::BITS).unwrap(), false);
assert!(sieve.next().is_none());
}
}

0 comments on commit d4941e9

Please sign in to comment.