Skip to content

Commit

Permalink
fix: W1D6 test_task3_sst_filter (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
yyin-dev committed Feb 24, 2024
1 parent ce9ef62 commit f436b3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mini-lsm/src/tests/week1_day6.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,5 +193,5 @@ fn test_task3_sst_filter() {
Bound::Excluded(format!("{:05}", 6000).as_bytes()),
)
.unwrap();
assert!(min_num < iter.num_active_iterators() && iter.num_active_iterators() < max_num);
assert!(min_num <= iter.num_active_iterators() && iter.num_active_iterators() < max_num);
}

0 comments on commit f436b3f

Please sign in to comment.