Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiburt committed Jan 24, 2025
1 parent 2501e2e commit 67f4356
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tabled/tests/qc/tests/span.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ fn set_span_hspan(table: &mut Table, list: &[u8]) {
}

let span = list[i];
table.with(Modify::new((r, c)).with(Span::column(span as usize)));
table.with(Modify::new((r, c)).with(Span::column(span as isize)));

i += 1;
}
Expand All @@ -163,7 +163,7 @@ fn set_span_vspan(table: &mut Table, list: &[u8]) {
}

let span = list[i];
table.with(Modify::new((r, c)).with(Span::row(span as usize)));
table.with(Modify::new((r, c)).with(Span::row(span as isize)));

i += 1;
}
Expand Down

0 comments on commit 67f4356

Please # to comment.