From 7132054d61cacfb012159bbcf0b3d4b37e5166fc Mon Sep 17 00:00:00 2001 From: vkovtun <viktor.kovtun@id.ethz.ch> Date: Thu, 7 Dec 2023 08:19:57 +0100 Subject: [PATCH] BIS-772: Fixing Java tests. --- .../ch/ethz/sis/openbis/systemtest/asapi/v3/ExportData.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server-application-server/sourceTest/java/ch/ethz/sis/openbis/systemtest/asapi/v3/ExportData.java b/server-application-server/sourceTest/java/ch/ethz/sis/openbis/systemtest/asapi/v3/ExportData.java index a7eac44b3b7..62c27ddc0d5 100644 --- a/server-application-server/sourceTest/java/ch/ethz/sis/openbis/systemtest/asapi/v3/ExportData.java +++ b/server-application-server/sourceTest/java/ch/ethz/sis/openbis/systemtest/asapi/v3/ExportData.java @@ -553,9 +553,11 @@ class ExportData { // Sample: /TEST-SPACE/TEST-PROJECT/FV-TEST "export-sample-all.zip", - EnumSet.of(ExportFormat.XLSX, ExportFormat.PDF, ExportFormat.DATA), + EnumSet.of(ExportFormat.XLSX, ExportFormat.HTML, ExportFormat.PDF, ExportFormat.DATA), List.of(new ExportablePermId(ExportableKind.SAMPLE, new SamplePermId("200902091250077-1026"))), - new AllFields(), + new SelectedFields( + List.of(CODE, PARENTS, CHILDREN, REGISTRATOR, REGISTRATION_DATE), + List.of(new PropertyTypePermId("BACTERIUM"), new PropertyTypePermId("SIZE"), new PropertyTypePermId("ORGANISM"))), XlsTextFormat.PLAIN, true, // withReferredTypes false // withImportCompatibility -- GitLab