aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/test_contrib.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/clojure/contrib/test_contrib.clj')
-rw-r--r--src/clojure/contrib/test_contrib.clj5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/clojure/contrib/test_contrib.clj b/src/clojure/contrib/test_contrib.clj
index f5cf44ea..a846ab17 100644
--- a/src/clojure/contrib/test_contrib.clj
+++ b/src/clojure/contrib/test_contrib.clj
@@ -13,14 +13,13 @@
;; stuart.halloway (gmail)
(ns clojure.contrib.test-contrib
- (:use [clojure.contrib.test-is :only (run-tests)])
+ (:use [clojure.test :only (run-tests)])
(:gen-class))
(def test-names
[:complex-numbers :fnmap :macro-utils :monads :pprint.pretty
:pprint.cl-format :str-utils :shell-out :test-graph
- :test-dataflow :test-java-utils :test-lazy-seqs :test-is
- :test-is-fixtures])
+ :test-dataflow :test-java-utils :test-lazy-seqs])
(def test-namespaces
(map #(symbol (str "clojure.contrib.test-contrib." (name %)))