From 2b483067563943a99c065a668d44fffbcbabb84f Mon Sep 17 00:00:00 2001 From: Jens Goldhammer Date: Sat, 28 Apr 2018 22:03:42 +0200 Subject: [PATCH] Remove invalid characters in ClassRule annotation (#670) The classRule annotation cannot contain characters at the end. It will give the user a compile error. --- docs/usage/options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/options.md b/docs/usage/options.md index d26d5a319d5..dbd45804c7c 100644 --- a/docs/usage/options.md +++ b/docs/usage/options.md @@ -124,7 +124,7 @@ public static GenericContainer elasticsearch = If the used image supports Docker's [Healthcheck](https://docs.docker.com/engine/reference/builder/#healthcheck) feature, you can directly leverage the `healthy` state of the container as your wait condition: ```java -@ClassRule2.32.3 +@ClassRule public static GenericContainer container = new GenericContainer("image-with-healthcheck:4.2") .waitingFor(Wait.forHealthcheck());