diff --git a/tests/compilers/test_ast.py b/tests/compilers/test_ast.py index 3633851..0fc69da 100644 --- a/tests/compilers/test_ast.py +++ b/tests/compilers/test_ast.py @@ -119,10 +119,10 @@ def test_ast_good_catch(): hy_compile(tokenize("(catch)")) hy_compile(tokenize("(catch [])")) hy_compile(tokenize("(catch [Foobar])")) - # hy_compile(tokenize("(catch [[]])")) - # hy_compile(tokenize("(catch [x FooBar])")) - # hy_compile(tokenize("(catch [x [FooBar BarFoo]])")) - # hy_compile(tokenize("(catch [x [FooBar BarFoo]])")) + hy_compile(tokenize("(catch [[]])")) + hy_compile(tokenize("(catch [x FooBar])")) + hy_compile(tokenize("(catch [x [FooBar BarFoo]])")) + hy_compile(tokenize("(catch [x [FooBar BarFoo]])")) def test_ast_bad_catch():