diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/syntax_error.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/syntax_error.ml b/test/syntax_error.ml index 318cb2c..99f324a 100644 --- a/test/syntax_error.ml +++ b/test/syntax_error.ml @@ -117,7 +117,8 @@ let unknow_function () = let expected = { level = Error; loc = _position; message = "Unexpected expression here." } in - _test_instruction "a = ran(1, 2)" expected; + _test_instruction "ran(1, 2)" expected; + _test_instruction "'<<ran(1, 2)>>'" expected; _test_instruction "rand(1,2))" expected let inline_elif () = |