Skip to content

Commit

Permalink
no need to wrap result in seq
Browse files Browse the repository at this point in the history
  • Loading branch information
josedonizetti committed Nov 28, 2015
1 parent f2940af commit 5076fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/migratus/test/core.clj
Expand Up @@ -73,7 +73,7 @@
(defn- migration-exists? [name]
(let [migrations (file-seq (migratus.database/find-migration-dir "migrations"))
names (map #(.getName %) migrations)]
(seq (filter #(.contains % name) names))))
(filter #(.contains % name) names)))

(deftest test-create-and-destroy
(let [config {:store :database
Expand Down

0 comments on commit 5076fe2

Please sign in to comment.