diff --git a/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-import-export.js b/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-import-export.js index b8db009ea5efa14c58d931f7635e0526c81ea522..d341a2bbf0072be90757a1fac1ef987743d8bae6 100644 --- a/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-import-export.js +++ b/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-import-export.js @@ -156,14 +156,14 @@ define([ 'jquery', 'underscore', 'openbis', 'test/openbis-execute-operations', ' var c = new common(assert, dtos); var fAction = function(facade) { - var exportablePermId = new ExportablePermId( - ExportableKind.SAMPLE, new SamplePermId("200902091225616-1027")); + var exportablePermId = new dtos.ExportablePermId( + dtos.ExportableKind.SAMPLE, new dtos.SamplePermId("200902091225616-1027")); var exportData = new dtos.ExportData(exportablePermId, - new AllFields()); + new dtos.AllFields()); var exportOptions = new dtos.ExportOptions( - [ExportFormat.XLSX, ExportFormat.HTML, ExportFormat.PDF, ExportFormat.DATA], - XlsTextFormat.RICH, true, false); + [dtos.ExportFormat.XLSX, dtos.ExportFormat.HTML, dtos.ExportFormat.PDF, + dtos.ExportFormat.DATA], dtos.XlsTextFormat.RICH, true, false); return facade.executeExport(exportData, exportOptions); }