Rename default timeout consts
Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/1284c55b Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/1284c55b Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/1284c55b Branch: refs/heads/master Commit: 1284c55b2bf33b14f184b66005e47477269fe07e Parents: 314020b Author: Akila Perera <[email protected]> Authored: Mon Nov 30 00:28:05 2015 +0530 Committer: Akila Perera <[email protected]> Committed: Mon Nov 30 00:33:48 2015 +0530 ---------------------------------------------------------------------- .../stratos/integration/tests/StratosIntegrationTest.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/1284c55b/products/stratos/modules/integration/test-integration/src/test/java/org/apache/stratos/integration/tests/StratosIntegrationTest.java ---------------------------------------------------------------------- diff --git a/products/stratos/modules/integration/test-integration/src/test/java/org/apache/stratos/integration/tests/StratosIntegrationTest.java b/products/stratos/modules/integration/test-integration/src/test/java/org/apache/stratos/integration/tests/StratosIntegrationTest.java index fca858e..7de8020 100644 --- a/products/stratos/modules/integration/test-integration/src/test/java/org/apache/stratos/integration/tests/StratosIntegrationTest.java +++ b/products/stratos/modules/integration/test-integration/src/test/java/org/apache/stratos/integration/tests/StratosIntegrationTest.java @@ -34,9 +34,8 @@ public class StratosIntegrationTest { protected String stratosSecuredBackendURL; protected RestClient restClient; protected MockIaasApiClient mockIaasApiClient; - public static final int GLOBAL_TEST_TIMEOUT = 5 * 60 * 1000; // 5 mins - public static final int IAAS_PROVIDER_TEST_TIMEOUT = 10 * 60 * 1000; // 10 mins - public static final int APPLICATION_TEST_TIMEOUT = 25 * 60 * 1000; // 25 mins + public static final int DEFAULT_TEST_TIMEOUT = 5 * 60 * 1000; // 5 mins + public static final int DEFAULT_APPLICATION_TEST_TIMEOUT = 25 * 60 * 1000; // 25 mins public StratosIntegrationTest() { try {
