Skip to content

Commit 04de3e7

Browse files
committed
fix intermittent error with CDS test
1 parent 48a141b commit 04de3e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/ca/uhn/fhir/jpa/starter/CdsHooksServletIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void beforeEach() {
8888

8989
private Boolean hasCdsServices() throws IOException {
9090
var response = callCdsServicesDiscovery();
91-
return response.getEntity().getContentLength() > 21 || response.getEntity().isChunked();
91+
return response.getEntity().getContentLength() > 25 || response.getEntity().isChunked();
9292
}
9393

9494
private CloseableHttpResponse callCdsServicesDiscovery() {

0 commit comments

Comments
 (0)