Skip to content
Snippets Groups Projects
Commit 3b7e78f3 authored by Tom Robinson's avatar Tom Robinson
Browse files

Fix test/util.clj

parent 4a8e5d2a
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@
[clj-time
[coerce :as tcoerce]
[core :as time]]
[clojure.string :as s]
[clojure.tools.logging :as log]
[clojure.walk :as walk]
[clojurewerkz.quartzite.scheduler :as qs]
......@@ -116,8 +117,8 @@
(every-pred (some-fn keyword? string?)
(some-fn #{:id :created_at :updated_at :last_analyzed :created-at :updated-at :field-value-id :field-id
:fields_hash :date_joined :date-joined :last_login :dimension-id :human-readable-field-id}
#(str/ends-with? % "_id")
#(str/ends-with? % "_at")))
#(s/ends-with? % "_id")
#(s/ends-with? % "_at")))
data))
([pred data]
(walk/prewalk (fn [maybe-map]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment