Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
bertiqwerty committed Jul 26, 2024
1 parent 395064f commit 2c71ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rormula-rs/tests/test_rormula.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fn test_wilkinson() {
let v2 = Value::Array(v2);
let s = "n+o+n";
let expr = ExprWilkinson::parse(s).unwrap();
let ref_arr: Array2d<RowMajor> =
let ref_arr: Array2d<ColMajor> =
Array2d::from_iter([0.1, 0.4, 0.1, 0.2, 0.5, 0.2, 0.3, 0.6, 0.3].iter(), 3, 3).unwrap();
let res = expr.eval_vec(vec![v1, v2]).unwrap();
match res {
Expand Down

0 comments on commit 2c71ffd

Please sign in to comment.