Possible fix for event listener
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-dmaap-adapter-bundle / src / test / java / org / onap / appc / adapter / messaging / dmaap / http / TestHttpDmaapConsumerImpl.java
index d5707c2..ea9a5e9 100644 (file)
@@ -106,17 +106,6 @@ public class TestHttpDmaapConsumerImpl {
         verifyNoMoreInteractions(httpClient, httpResponse, statusLine, entity);
     }
 
-    @Test
-    public void shouldNotGetHttpRequest_whenCredencialsAreNotProvided() {
-
-        httpDmaapConsumer.updateCredentials(null, null);
-
-        List<String> output =  httpDmaapConsumer.fetch(TIMEOUT_MS, LIMIT);
-
-        assertTrue(output.isEmpty());
-        verifyNoMoreInteractions(httpClient, httpResponse, statusLine, entity);
-    }
-
     @Test
     public void shouldNotBeSuccessful_whenHttpResponseIsOtherThanOk() throws Exception {