From 8f89df548f3f0dc0ff33dc9d98528799a25df9b5 Mon Sep 17 00:00:00 2001 From: Gary Deer Date: Wed, 16 Mar 2016 11:21:34 -0500 Subject: [PATCH] fixed regex helper --- test/marginalia/test/helpers.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/marginalia/test/helpers.clj b/test/marginalia/test/helpers.clj index f06b9fd..fdb793a 100644 --- a/test/marginalia/test/helpers.clj +++ b/test/marginalia/test/helpers.clj @@ -17,7 +17,7 @@ (delete-file f silently))) (defn find-clojure-file-paths [source-dir] - (marginalia.core/find-processable-file-paths source-dir #".clj$")) + (marginalia.core/find-processable-file-paths source-dir #(re-find #"\.clj$" %))) (defn files-in [dir] (seq (.listFiles (file dir))))