From d55c7869a50f6b11747d3337edbb7e3b14103663 Mon Sep 17 00:00:00 2001 From: Boris Stanojevic Date: Thu, 1 Feb 2024 08:46:12 +0100 Subject: [PATCH] small unit test fix --- .../protocol/AbstractFhirRestTLSSenderIntegrationTest.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/commons/ihe/fhir/core/src/test/java/org/openehealth/ipf/commons/ihe/fhir/audit/protocol/AbstractFhirRestTLSSenderIntegrationTest.java b/commons/ihe/fhir/core/src/test/java/org/openehealth/ipf/commons/ihe/fhir/audit/protocol/AbstractFhirRestTLSSenderIntegrationTest.java index 7095126377..a334fc1b9e 100644 --- a/commons/ihe/fhir/core/src/test/java/org/openehealth/ipf/commons/ihe/fhir/audit/protocol/AbstractFhirRestTLSSenderIntegrationTest.java +++ b/commons/ihe/fhir/core/src/test/java/org/openehealth/ipf/commons/ihe/fhir/audit/protocol/AbstractFhirRestTLSSenderIntegrationTest.java @@ -64,11 +64,6 @@ public void tearDown() { @Test public void testTwoWayTLSFlooding() throws Exception { - long sleepCount = 0L; - while (sleepCount < 10000) { - Thread.sleep(1000); - sleepCount = sleepCount + 1; - } var count = 500; var threads = 2; var executor = Executors.newFixedThreadPool(threads);