From e00e10aa9dac0011e0b5c17db38349c3b0b641d0 Mon Sep 17 00:00:00 2001 From: cagache Date: Tue, 26 Mar 2019 15:35:05 +0200 Subject: [PATCH] call super.checkServerHealth --- .../java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java index aa65f8c967..ed5d917d55 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java @@ -161,6 +161,7 @@ public class BaseRMRestTest extends RestTest @BeforeClass (alwaysRun = true) public void checkServerHealth() throws Exception { + super.checkServerHealth(); // Create RM Site if not exist createRMSiteIfNotExists(); }