From f776f5411af658f2e76c107b01ed740b49aaa870 Mon Sep 17 00:00:00 2001 From: "Paul R. Tagliamonte" Date: Sun, 3 Mar 2013 00:00:55 -0500 Subject: [PATCH] docstring update --- tests/compilers/test_ast.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/compilers/test_ast.py b/tests/compilers/test_ast.py index 54f2577..4c9f5af 100644 --- a/tests/compilers/test_ast.py +++ b/tests/compilers/test_ast.py @@ -22,7 +22,7 @@ from hy.compilers.ast import HyASTCompiler from hy.lex import tokenize -def test_ast_expression(): - """ Test AST --> Expression conversion """ +def test_ast_expression_basics(): + """ Ensure basic AST conversion works. """ compiler = HyASTCompiler() code = compiler.compile(tokenize("(foo bar)"))