mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-05-21 02:30:43 +00:00
bbbb
This commit is contained in:
@@ -120,8 +120,8 @@ mod tests {
|
||||
#[test]
|
||||
fn test_encode_sorted_big() {
|
||||
let mut encoder = S4BP128Encoder::new();
|
||||
let num_ints = 10000 as usize;
|
||||
let expected_length = 1274;
|
||||
let num_ints = 10_000 as usize;
|
||||
let expected_length = 1_274;
|
||||
let input: Vec<u32> = (0..num_ints as u32)
|
||||
.map(|i| i * 7 / 2)
|
||||
.into_iter().collect();
|
||||
@@ -136,8 +136,8 @@ mod tests {
|
||||
#[test]
|
||||
fn test_encode_unsorted_big() {
|
||||
let mut encoder = S4BP128Encoder::new();
|
||||
let num_ints = 10000 as usize;
|
||||
let expected_length = 1897;
|
||||
let num_ints = 10_000 as usize;
|
||||
let expected_length = 1_897;
|
||||
let input: Vec<u32> = (0..num_ints as u32)
|
||||
.map(|i| i * 7 % 37)
|
||||
.into_iter().collect();
|
||||
|
||||
Reference in New Issue
Block a user