Actions
bug #9087
closedtypedesignation/{uuid}/annotations must return pager objects
Status:
Closed
Priority:
Highest
Assignee:
Category:
cdmlib-remote
Target version:
Start date:
Due date:
% Done:
100%
Estimated time:
Severity:
normal
Found in Version:
Description
see commit:cdm-dataportal|45b496bc -> cdm_api.module which fixes the problem for #8134
Test page reference_int/cdm_dataportal/name/96ad7144-a898-4694-94a9-335d0cab9c24
Related issues
Updated by Andreas Kohlbecker over 3 years ago
- Copied from feature request #8134: Implement verbatim type information in dataportal added
Updated by Andreas Kohlbecker over 3 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 50
should be fully fixed.
before closing disable in eu.etaxonomy.dataportal.pages.PortalPage.pageHealthChecks()
:
try {
String ignore_error = "Expecting web service to return pager objects but received an array";
List<String> errors = getErrors().stream().filter(str -> str.startsWith(ignore_error)).collect(Collectors.toList());
assertTrue("The page must not show an error box", errors.size() == 0);
} catch (NoSuchElementException e) {
//IGNORE since this is expected!
}
and run the tests : http://int.e-taxonomy.eu/jenkins/job/drupal7-cdm_dataportal-SNAPSHOT/
Updated by Andreas Kohlbecker over 3 years ago
- Status changed from Resolved to Closed
- % Done changed from 50 to 100
exception handling in PortalPage.pageHealthChecks() is removed and all test are still running successfully.
Updated by Andreas Müller over 3 years ago
- Target version changed from Release 5.18 to Release 5.17
Actions