From 461add59f718301adf75a335992c565b33bb759e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Z=C3=B6ller?= Date: Tue, 15 Dec 2020 21:40:47 +0100 Subject: [PATCH] #47 - Upgraded Testcontainers version --- project.clj | 4 ++-- src/clj_test_containers/core.clj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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) ```