Skip to content

Commit 801e1b7

Browse files
felixL-Kfilipeom
andcommitted
Update test/unit/test_expr.ml
Co-authored-by: filipeom <[email protected]>
1 parent 99906c4 commit 801e1b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/test_expr.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,8 +620,8 @@ let test_fp_nan_not_geffects _ =
620620
let x = symbol "x" ty in
621621
let y = symbol "y" ty in
622622
(* x != x makes isNaN(x) *)
623-
let expr = Expr.unop ty Not (Expr.relop ty Ge x y) in
624-
let expected = Expr.unop ty Not (Expr.relop ty Le y x) in
623+
let expr = Expr.unop Ty_bool Not (Expr.relop ty Ge x y) in
624+
let expected = Expr.unop Ty_bool Not (Expr.relop ty Le y x) in
625625
check expr expected
626626

627627
let test_simplify_concat =

0 commit comments

Comments
 (0)