Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alpancs committed Sep 23, 2024
1 parent cf287e2 commit c5cdc4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quranize/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub struct Quranize {
}

impl Quranize {
const EXPECTED_VERTEX_COUNT: usize = 126_327;
const EXPECTED_VERTEX_COUNT: usize = 126_330;

/// Create a new [`Quranize`] instance.
///
Expand Down Expand Up @@ -128,7 +128,7 @@ mod tests {
let t = Quranize::new().tree;
assert_eq!(t.vertices.len(), Quranize::EXPECTED_VERTEX_COUNT);
assert_eq!(t.vertices.len(), t.edges.len() + 1);
assert_eq!(t.count_data(0), 77_883);
assert_eq!(t.collect_data(0).len(), 77_883);
assert_eq!(t.count_data(0), 77_885);
assert_eq!(t.collect_data(0).len(), 77_885);
}
}

0 comments on commit c5cdc4c

Please sign in to comment.