From 1fd203f4ef239f8e5242772f9d9e66e7099e4c34 Mon Sep 17 00:00:00 2001 From: felmer <felmer> Date: Mon, 27 Nov 2017 14:24:49 +0000 Subject: [PATCH] change @BeforeClass to @BeforeMethod in order to have unmodified openbis_test database after the tests. SVN: 38960 --- .../systemsx/cisd/openbis/systemtest/EntityOperationTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openbis/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/EntityOperationTest.java b/openbis/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/EntityOperationTest.java index 86f16f4b4f7..cbc896f6b7a 100644 --- a/openbis/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/EntityOperationTest.java +++ b/openbis/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/EntityOperationTest.java @@ -25,6 +25,7 @@ import java.util.Collections; import java.util.List; import org.testng.annotations.BeforeClass; +import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import ch.systemsx.cisd.common.exceptions.AuthorizationFailureException; @@ -86,7 +87,7 @@ public class EntityOperationTest extends SystemTestCase private static final SpaceIdentifier SPACE_B = new SpaceIdentifier("TESTGROUP"); - @BeforeClass + @BeforeMethod public void createTestUsers() { systemSessionToken = commonServer.tryToAuthenticateAsSystem().getSessionToken(); -- GitLab