Skip to content

Commit

Permalink
Fix comparison in build_serialize_load_sbwt.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaklin committed Sep 23, 2024
1 parent 6042335 commit c458b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ mod tests {
assert_eq!(lcs, lcs_loaded);
match sbwt {
sbwt::SbwtIndexVariant::SubsetMatrix(ref index) => {
match sbwt {
match sbwt_loaded {
sbwt::SbwtIndexVariant::SubsetMatrix(ref index_loaded) => {
assert_eq!(index, index_loaded);
},
Expand Down

0 comments on commit c458b25

Please sign in to comment.