Skip to content

Commit c9d3a17

Browse files
author
Devdutt Shenoi
committed
test: fix as non-exclusive range
1 parent b4c2bd5 commit c9d3a17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parseable/staging/reader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ mod tests {
458458
let mut batches = Vec::with_capacity(count);
459459

460460
for batch_num in 1..=count as i32 {
461-
let id_array = Int32Array::from_iter(batch_num * 10..batch_num * 10 + 1);
461+
let id_array = Int32Array::from_iter(batch_num * 10..=batch_num * 10 + 1);
462462
let name_array = StringArray::from(vec![
463463
format!("Name {batch_num}-1"),
464464
format!("Name {batch_num}-2"),

0 commit comments

Comments
 (0)