summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/clj/clojure/java/browse.clj4
-rw-r--r--src/clj/clojure/test.clj2
-rw-r--r--src/clj/clojure/test/junit.clj4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/clj/clojure/java/browse.clj b/src/clj/clojure/java/browse.clj
index f4466f5c..bc71553a 100644
--- a/src/clj/clojure/java/browse.clj
+++ b/src/clj/clojure/java/browse.clj
@@ -40,8 +40,8 @@
; the implementation of this function resides in another namespace to be loaded "on demand"
; this fixes a bug on mac os x where the process turns into a GUI app
; see http://code.google.com/p/clojure-contrib/issues/detail?id=32
- (require 'clojure.contrib.javadoc.browse-ui)
- ((find-var 'clojure.contrib.javadoc.browse-ui/open-url-in-swing) url))
+ (require 'clojure.java.browse-ui)
+ ((find-var 'clojure.java.browse-ui/open-url-in-swing) url))
(defn browse-url
"Open url in a browser"
diff --git a/src/clj/clojure/test.clj b/src/clj/clojure/test.clj
index d7dd860f..5891ae9c 100644
--- a/src/clj/clojure/test.clj
+++ b/src/clj/clojure/test.clj
@@ -193,7 +193,7 @@
All the test reporting functions write to the var *test-out*. By
default, this is the same as *out*, but you can rebind it to any
PrintWriter. For example, it could be a file opened with
- clojure.contrib.duck-streams/writer.
+ clojure.java.io/writer.
EXTENDING TEST-IS (ADVANCED)
diff --git a/src/clj/clojure/test/junit.clj b/src/clj/clojure/test/junit.clj
index dd7b08d1..7e696e3b 100644
--- a/src/clj/clojure/test/junit.clj
+++ b/src/clj/clojure/test/junit.clj
@@ -25,14 +25,14 @@
with-junit-output macro, like this:
(use 'clojure.test)
- (use 'clojure.contrib.test.junit)
+ (use 'clojure.test.junit)
(with-junit-output
(run-tests 'my.cool.library))
To write the output to a file, rebind clojure.test/*test-out* to
your own PrintWriter (perhaps opened using
- clojure.contrib.duck-streams/writer)."
+ clojure.java.io/writer)."
:author "Jason Sankey"}
clojure.test.junit
(:require [clojure.stacktrace :as stack]