From f956b75e4ee1e57606c047f33c27a7ef44222e55 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Sun, 23 Dec 2012 14:02:47 -0500 Subject: [PATCH] tests, again --- tests/lang/foo.hy | 2 +- tests/lang/kwargs.hy | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/lang/foo.hy b/tests/lang/foo.hy index 051dc2a..756cfff 100644 --- a/tests/lang/foo.hy +++ b/tests/lang/foo.hy @@ -1,4 +1,4 @@ ; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp (defn square [arg] - (return (* arg arg))) + (* arg arg)) diff --git a/tests/lang/kwargs.hy b/tests/lang/kwargs.hy index 39fc5c2..d0c98b2 100644 --- a/tests/lang/kwargs.hy +++ b/tests/lang/kwargs.hy @@ -3,8 +3,7 @@ (import "tests.lang.test_kwargs") (defn kiwi [] - (return (kwapply (tests.lang.test_kwargs.shim "one" "two") { + (kwapply (tests.lang.test_kwargs.shim "one" "two") { "three" "three" "four" "four" })) -)