You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ja...@apache.org on 2018/09/07 19:23:53 UTC

[incubator-openwhisk-package-kafka] branch master updated: removing test (#283)

This is an automated email from the ASF dual-hosted git repository.

japetrsn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-package-kafka.git


The following commit(s) were added to refs/heads/master by this push:
     new c59782c  removing test (#283)
c59782c is described below

commit c59782c65b6ae473d2198069e417b8806873cd70
Author: Belinda Vennam <be...@gmail.com>
AuthorDate: Fri Sep 7 15:23:51 2018 -0400

    removing test (#283)
---
 .../test/scala/system/packages/MessageHubProduceTests.scala    | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/tests/src/test/scala/system/packages/MessageHubProduceTests.scala b/tests/src/test/scala/system/packages/MessageHubProduceTests.scala
index 214fc55..080fe2b 100644
--- a/tests/src/test/scala/system/packages/MessageHubProduceTests.scala
+++ b/tests/src/test/scala/system/packages/MessageHubProduceTests.scala
@@ -122,16 +122,6 @@ class MessageHubProduceTests
         }
     }
 
-    it should "Reject with bad broker list" in {
-        val badBrokerParams = validParameters + ("kafka_brokers_sasl" -> List("localhost:0000").toJson)
-
-        withActivation(wsk.activation, wsk.action.invoke(s"$messagingPackage/$messageHubProduce", badBrokerParams), totalWait = 60 seconds) {
-            activation =>
-                activation.response.success shouldBe false
-                activation.response.result.get.toString should include("Timed out communicating with Message Hub")
-        }
-    }
-
     it should "Reject trying to decode a non-base64 key" in {
         val badKeyParams = validParameters + ("key" -> "?".toJson) + ("base64DecodeKey" -> true.toJson)