mirror of
https://github.com/uutils/uutils-term-grid.git
synced 2026-06-10 16:13:01 -07:00
fix tests on 32-bit architecture
This commit is contained in:
+1
-1
@@ -193,7 +193,7 @@ fn emoji() {
|
||||
// checking that we do not get a panic.
|
||||
#[test]
|
||||
fn possible_underflow() {
|
||||
let cells: Vec<_> = (0..48).map(|i| 2_isize.pow(i).to_string()).collect();
|
||||
let cells: Vec<_> = (0..48).map(|i| 2_i64.pow(i).to_string()).collect();
|
||||
|
||||
let grid = Grid::new(
|
||||
cells,
|
||||
|
||||
Reference in New Issue
Block a user