This is an automated email from the ASF dual-hosted git repository. bdelacretaz pushed a commit to branch tyge68-issue/SLING-9200 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-junit-core.git
commit 46a80d6135711acc2e32d6b3a1cc0cd5396c8cab Author: Bertrand Delacretaz <[email protected]> AuthorDate: Mon Mar 16 16:18:58 2020 +0100 SLING-9200 - use camel case as per existing system properties in TeleporterRule --- src/main/java/org/apache/sling/junit/impl/TestsManagerImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/sling/junit/impl/TestsManagerImpl.java b/src/main/java/org/apache/sling/junit/impl/TestsManagerImpl.java index b5a2c42..0dec2bc 100644 --- a/src/main/java/org/apache/sling/junit/impl/TestsManagerImpl.java +++ b/src/main/java/org/apache/sling/junit/impl/TestsManagerImpl.java @@ -55,10 +55,10 @@ public class TestsManagerImpl implements TestsManager { // the inactivity timeout is the maximum time after the last bundle became active // before waiting for more bundles to become active should be aborted - public static final String PROPERTY_SYSTEM_STARTUP_INACTIVITY_TIMEOUT_SECONDS = "sling.junit.core.system_startup_inactive_timeout"; + public static final String PROPERTY_SYSTEM_STARTUP_INACTIVITY_TIMEOUT_SECONDS = "sling.junit.core.SystemStartupInactiveTimeout"; // Global Timeout up to which it stop waiting for bundles to be all active. - public static final String PROPERTY_SYSTEM_STARTUP_GLOBAL_TIMEOUT_SECONDS = "sling.junit.core.system_startup_global_timeout"; + public static final String PROPERTY_SYSTEM_STARTUP_GLOBAL_TIMEOUT_SECONDS = "sling.junit.core.SystemStartupGlobalTimeout"; private static volatile int inactivityTimeoutSeconds = Integer.parseInt(System.getProperty(PROPERTY_SYSTEM_STARTUP_INACTIVITY_TIMEOUT_SECONDS, "10"));
