From 15436ed8d92655b8575166228f9ed688961c050f Mon Sep 17 00:00:00 2001 From: alaskowski <alaskowski@ethz.ch> Date: Fri, 20 Oct 2023 17:21:07 +0200 Subject: [PATCH] BIS-713: Fixed tests --- .../systemtest/api/v1/GeneralInformationServiceTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server-application-server/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationServiceTest.java b/server-application-server/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationServiceTest.java index f3775fde48a..dda91ecf0c4 100644 --- a/server-application-server/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationServiceTest.java +++ b/server-application-server/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationServiceTest.java @@ -2069,12 +2069,12 @@ public class GeneralInformationServiceTest extends SystemTestCase assertEquals(1, groups.size()); assertEquals("HCS_IMAGE_ANALYSIS_DATA", types.get(4).getCode()); assertEquals("[]", types.get(4).getPropertyTypeGroups().toString()); - assertEquals("LINK_TYPE", types.get(6).getCode()); + assertEquals("LINK_TYPE", types.get(7).getCode()); assertEquals("[]", types.get(0).getPropertyTypeGroups().toString()); - assertEquals("REQUIRES_EXPERIMENT", types.get(7).getCode()); - assertEquals("[]", types.get(5).getPropertyTypeGroups().toString()); - assertEquals("UNKNOWN", types.get(8).getCode()); + assertEquals("REQUIRES_EXPERIMENT", types.get(8).getCode()); assertEquals("[]", types.get(8).getPropertyTypeGroups().toString()); + assertEquals("UNKNOWN", types.get(9).getCode()); + assertEquals("[]", types.get(9).getPropertyTypeGroups().toString()); assertEquals(12, types.size()); } -- GitLab