diff options
author | Stuart Halloway <stu@thinkrelevance.com> | 2009-06-24 00:01:11 -0400 |
---|---|---|
committer | Stuart Halloway <stu@thinkrelevance.com> | 2009-06-24 00:01:11 -0400 |
commit | 0930bfdf3361f76d773149b5bd7170c435fe5f20 (patch) | |
tree | 8445bed1696c397a1e56f3e50f8f356ba3869dd6 /src/clojure/contrib/test_contrib/pprint | |
parent | 85c4905b3ccb94dfdb2272e92de6ba1051e304e3 (diff) |
gtic: updated contrib tests to use new template syntax
Diffstat (limited to 'src/clojure/contrib/test_contrib/pprint')
-rw-r--r-- | src/clojure/contrib/test_contrib/pprint/helper.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/test_contrib/pprint/helper.clj b/src/clojure/contrib/test_contrib/pprint/helper.clj index c7112e68..9a4005d6 100644 --- a/src/clojure/contrib/test_contrib/pprint/helper.clj +++ b/src/clojure/contrib/test_contrib/pprint/helper.clj @@ -17,5 +17,5 @@ (:use [clojure.contrib.test-is :only (deftest are run-tests)])) (defmacro simple-tests [name & test-pairs] - `(deftest ~name (are (= _1 _2) ~@test-pairs))) + `(deftest ~name (are [x y] (= x y) ~@test-pairs))) |