diff --git a/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-update.js b/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-update.js index f2958840b1028e7fe3972706c1f38a04ac1623e1..e84b0547f98419da78491a247c6b74da162a04ba 100644 --- a/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-update.js +++ b/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-update.js @@ -13,7 +13,9 @@ define([ 'jquery', 'underscore', 'openbis', 'test/common' ], function($, _, open return fUpdate(facade, permIds[0]).then(function() { c.ok("Entity was updated"); return fFind(facade, permIds[0]).then(function(entity) { - fCheck(entity); + if (fCheck) { + fCheck(entity); + } c.finish(); }); }); diff --git a/js-test/source/java/ch/systemsx/cisd/openbis/jstest/report/V3APIReport.java b/js-test/source/java/ch/systemsx/cisd/openbis/jstest/report/V3APIReport.java index e5e09a80cee93f8b12fd69695eaa9a012f102808..609345d058b9c2586b99731e0e5352517a0daa39 100644 --- a/js-test/source/java/ch/systemsx/cisd/openbis/jstest/report/V3APIReport.java +++ b/js-test/source/java/ch/systemsx/cisd/openbis/jstest/report/V3APIReport.java @@ -58,7 +58,8 @@ public class V3APIReport }; private static final String[] IGNORE_CLASSES = { - "ch.ethz.sis.openbis.generic.asapi.v3.dto.common.fetchoptions.FetchOptionsToStringBuilder" + "ch.ethz.sis.openbis.generic.asapi.v3.dto.common.fetchoptions.FetchOptionsToStringBuilder", + "ch.ethz.sis.openbis.generic.asapi.v3.dto.common.search.SearchCriteriaToStringBuilder" }; @Test