Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 13F4318788 for ; Tue, 12 Jan 2016 03:51:42 +0000 (UTC) Received: (qmail 32389 invoked by uid 500); 12 Jan 2016 03:51:42 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 32339 invoked by uid 500); 12 Jan 2016 03:51:41 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 32328 invoked by uid 99); 12 Jan 2016 03:51:40 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Jan 2016 03:51:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CDB5DE0CC9; Tue, 12 Jan 2016 03:51:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: clebertsuconic@apache.org To: commits@activemq.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: activemq-artemis git commit: fixing missing tearDown call Date: Tue, 12 Jan 2016 03:51:40 +0000 (UTC) Repository: activemq-artemis Updated Branches: refs/heads/master c945879de -> ee962dc13 fixing missing tearDown call Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/ee962dc1 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/ee962dc1 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/ee962dc1 Branch: refs/heads/master Commit: ee962dc13715905a38aa628b2d12fd10658a543a Parents: c945879 Author: Clebert Suconic Authored: Mon Jan 11 22:51:31 2016 -0500 Committer: Clebert Suconic Committed: Mon Jan 11 22:51:31 2016 -0500 ---------------------------------------------------------------------- .../artemis/tests/integration/mqtt/imported/MQTTTestSupport.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/ee962dc1/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/mqtt/imported/MQTTTestSupport.java ---------------------------------------------------------------------- diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/mqtt/imported/MQTTTestSupport.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/mqtt/imported/MQTTTestSupport.java index 2e37110..61fcec0 100644 --- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/mqtt/imported/MQTTTestSupport.java +++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/mqtt/imported/MQTTTestSupport.java @@ -114,6 +114,7 @@ public class MQTTTestSupport extends ActiveMQTestBase { System.clearProperty("javax.net.ssl.keyStorePassword"); System.clearProperty("javax.net.ssl.keyStoreType"); stopBroker(); + super.tearDown(); } public void startBroker() throws Exception {