Skip to content

Commit

Permalink
Remove unnecessary imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
pgr0ss committed Oct 3, 2011
1 parent f1f12e3 commit 25768ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions spec/speclj/report/growl_spec.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@
(:use
[speclj.core]
[speclj.components :only (new-characteristic new-description)]
[speclj.results :only (pass-result fail-result pending-result)]
[speclj.results :only (pass-result fail-result)]
[speclj.report.growl]
[speclj.report.documentation :only (new-documentation-reporter)]
[speclj.reporting :only (report-description report-fail report-message report-pass report-pending report-runs)])
[speclj.reporting :only (report-runs)])
(:import
[speclj SpecFailure SpecPending]))


(describe "Growl Reporter"
(with documentation-reporter (new-documentation-reporter))
(with reporter (new-growl-reporter))
(with notification (atom nil))
(with title (atom nil))
Expand Down
8 changes: 4 additions & 4 deletions src/speclj/report/growl.clj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(ns speclj.report.growl
(:use
[speclj.results :only (pass? fail? pending? categorize)]
[speclj.reporting :only (report-fail report-description report-message report-pass report-pending report-runs tally-time)]
[speclj.report.progress :only (print-summary describe-counts-for)]
[speclj.results :only (categorize)]
[speclj.reporting :only (tally-time)]
[speclj.report.progress :only (describe-counts-for)]
[speclj.util :only (seconds-format)]
[clj-growl.core :only (make-growler)])
(:import
Expand All @@ -29,4 +29,4 @@
(apply growl (growl-message results))))

(defn new-growl-reporter []
(GrowlReporter.))
(GrowlReporter.))

0 comments on commit 25768ea

Please sign in to comment.