From 52a476c661e3edb8efaab349c6e164899a293738 Mon Sep 17 00:00:00 2001 From: Hannu Hartikainen Date: Wed, 31 Oct 2018 08:48:14 +0200 Subject: [PATCH] Fix tests (add missing require) --- test/clj/cljdoc/reaper.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/clj/cljdoc/reaper.clj b/test/clj/cljdoc/reaper.clj index 24234a2c..c760ed8f 100644 --- a/test/clj/cljdoc/reaper.clj +++ b/test/clj/cljdoc/reaper.clj @@ -1,5 +1,6 @@ (ns cljdoc.reaper (:require [clojure.java.io :as io] + [clojure.pprint :as pprint] [clojure.string :as str])) (defn reap! [] @@ -27,7 +28,7 @@ 'metosin/reitit-frontend 'metosin/reitit-middleware] :cljdoc.doc/tree docs}] - (spit "doc/cljdoc.edn" (with-out-str (clojure.pprint/pprint data))))) + (spit "doc/cljdoc.edn" (with-out-str (pprint/pprint data))))) (comment (reap!))