aboutsummaryrefslogtreecommitdiff
path: root/tests/errors.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/errors.v')
-rw-r--r--tests/errors.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/errors.v b/tests/errors.v
index e7beff3420..c677f6af5d 100644
--- a/tests/errors.v
+++ b/tests/errors.v
@@ -7,6 +7,6 @@ let x := Control.plus
(fun e => match e with Not_found => 1 | _ => 2 end) in
match Int.equal x 2 with
| true => ()
-| false => Control.throw Tactic_failure
+| false => Control.throw (Tactic_failure None)
end.
Abort.