From 2fd56e8fa1b96bf7fcd199841ca6f1d45c572a78 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Sun, 7 Apr 2013 18:20:32 +0200 Subject: [PATCH] catch: uncomment some tests Signed-off-by: Julien Danjou --- tests/compilers/test_ast.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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():