diff --git a/project.clj b/project.clj index 56b88ff..fcee4cd 100644 --- a/project.clj +++ b/project.clj @@ -7,7 +7,7 @@ :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.10.1"] - [org.testcontainers/testcontainers "1.15.0"]] + [org.testcontainers/testcontainers "1.15.1"]] :aliases {"test" ["run" "-m" "kaocha.runner"] "cljstyle" ["run" "-m" "cljstyle.main"]} @@ -22,7 +22,7 @@ [mvxcvi/cljstyle "0.13.0" :exclusions [org.clojure/clojure]] [org.clojure/test.check "1.1.0"] [org.clojure/tools.namespace "1.0.0"] - [org.testcontainers/postgresql "1.15.0-rc2"]] + [org.testcontainers/postgresql "1.15.1"]] :source-paths ["dev-src"]}} :target-path "target/%s") diff --git a/src/clj_test_containers/core.clj b/src/clj_test_containers/core.clj index 22f7652..9bcde7a 100644 --- a/src/clj_test_containers/core.clj +++ b/src/clj_test_containers/core.clj @@ -56,7 +56,7 @@ healthy state of your container as your wait condition. Example: - +pr ```clojure (wait {:wait-strategy :health :true} container) ```