You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2022/02/23 12:02:49 UTC

[myfaces-tobago] branch master updated: build(docker): update selenium firefox

This is an automated email from the ASF dual-hosted git repository.

hnoeth pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new b3d970d  build(docker): update selenium firefox
b3d970d is described below

commit b3d970d4749e6e8b6be9b2a1bcdff60107ca81a9
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Wed Feb 23 12:59:28 2022 +0100

    build(docker): update selenium firefox
---
 .../apache/myfaces/tobago/example/demo/integration/FrontendBase.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tobago-example/tobago-example-demo/src/test/java/org/apache/myfaces/tobago/example/demo/integration/FrontendBase.java b/tobago-example/tobago-example-demo/src/test/java/org/apache/myfaces/tobago/example/demo/integration/FrontendBase.java
index b87b8ee..ac9f2b4 100644
--- a/tobago-example/tobago-example-demo/src/test/java/org/apache/myfaces/tobago/example/demo/integration/FrontendBase.java
+++ b/tobago-example/tobago-example-demo/src/test/java/org/apache/myfaces/tobago/example/demo/integration/FrontendBase.java
@@ -66,7 +66,7 @@ abstract class FrontendBase {
   @Container
   private static final GenericContainer<?> SELENIUM_FIREFOX =
       new GenericContainer<>(DockerImageName
-          .parse("henningn/selenium-standalone-firefox:4.1.0-20211123"))
+          .parse("henningn/selenium-standalone-firefox:4.1.2-20220217"))
           .withNetwork(NETWORK).withNetworkAliases(SELENIUM_ALIAS).withExposedPorts(SELENIUM_PORT)
           .waitingFor(Wait.forHttp("/").forPort(SELENIUM_PORT))
           .withLogConsumer(new Slf4jLogConsumer(LoggerFactory.getLogger(SELENIUM_ALIAS)).withSeparateOutputStreams());