]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add getter for the timeout multiplier
authorDaniel Calviño Sánchez <danxuliu@gmail.com>
Fri, 4 Aug 2017 11:12:40 +0000 (13:12 +0200)
committerDaniel Calviño Sánchez <danxuliu@gmail.com>
Thu, 10 Aug 2017 11:34:38 +0000 (13:34 +0200)
In some cases the acceptance tests have to explicitly wait for something
to happen without using the "find" method from the actor; in those cases
the timeout multiplier needs to be taken into account too, so the test
cases must be able to retrieve it from the actor.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
tests/acceptance/features/core/Actor.php

index a87ccfb7737740340b6872a8068943e3101e21b0..bf2f5a7367df1d5ec623f780e1149f6fa5e7bb3c 100644 (file)
@@ -104,6 +104,15 @@ class Actor {
                $this->baseUrl = $baseUrl;
        }
 
+       /**
+        * Returns the multiplier for find timeouts.
+        *
+        * @return float the multiplier to apply to find timeouts.
+        */
+       public function getFindTimeoutMultiplier() {
+               return $this->findTimeoutMultiplier;
+       }
+
        /**
         * Sets the multiplier for find timeouts.
         *