Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bertiqwerty committed May 11, 2024
1 parent ebe5213 commit 3c2ab7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/expression/deep.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,7 @@ fn test_deep_compile() {
ops: smallvec::smallvec![ops[1].bin().unwrap(), ops[3].bin().unwrap()],
};
let unary_op = UnaryOpWithReprs {
reprs: smallvec::smallvec![ops[6].repr()],
reprs: smallvec::smallvec![ops[8].repr()],
op: UnaryOp::from_vec(smallvec::smallvec![ops[8].unary().unwrap()]),
};
let deep_ex = DeepEx::new(nodes, bin_ops, unary_op).unwrap();
Expand All @@ -1357,7 +1357,7 @@ fn test_deep_compile() {
ops: smallvec::smallvec![ops[1].bin().unwrap(), ops[3].bin().unwrap()],
};
let unary_op = UnaryOpWithReprs {
reprs: smallvec::smallvec![ops[6].repr()],
reprs: smallvec::smallvec![ops[8].repr()],
op: UnaryOp::from_vec(smallvec::smallvec![ops[8].unary().unwrap()]),
};
let nodes = vec![
Expand Down

0 comments on commit 3c2ab7c

Please sign in to comment.