From commits-return-62437-archive-asf-public=cust-asf.ponee.io@activemq.apache.org Wed Jan 6 20:20:09 2021 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-ec2-va.apache.org (mxout1-ec2-va.apache.org [3.227.148.255]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 00C8F18066B for ; Wed, 6 Jan 2021 21:20:08 +0100 (CET) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-ec2-va.apache.org (ASF Mail Server at mxout1-ec2-va.apache.org) with SMTP id 3418744A23 for ; Wed, 6 Jan 2021 20:20:08 +0000 (UTC) Received: (qmail 50643 invoked by uid 500); 6 Jan 2021 20:20:07 -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 50621 invoked by uid 99); 6 Jan 2021 20:20:07 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jan 2021 20:20:07 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id B1F408E4B2; Wed, 6 Jan 2021 20:20:07 +0000 (UTC) Date: Wed, 06 Jan 2021 20:20:07 +0000 To: "commits@activemq.apache.org" Subject: [activemq-artemis] branch master updated: ARTEMIS-3043 - remove reference to improperly named field, now corrected, from test MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <160996440736.19589.10192102148722954828@gitbox.apache.org> From: gtully@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: activemq-artemis X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: de603ceba2c55574c9e687e0d7fd4bd1dd07fc92 X-Git-Newrev: 4e70fcdb5277228b9a23f3dd17cd2d236dfb7f5e X-Git-Rev: 4e70fcdb5277228b9a23f3dd17cd2d236dfb7f5e X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. gtully pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git The following commit(s) were added to refs/heads/master by this push: new 4e70fcd ARTEMIS-3043 - remove reference to improperly named field, now corrected, from test 4e70fcd is described below commit 4e70fcdb5277228b9a23f3dd17cd2d236dfb7f5e Author: gtully AuthorDate: Wed Jan 6 20:19:49 2021 +0000 ARTEMIS-3043 - remove reference to improperly named field, now corrected, from test --- .../tests/integration/management/ActiveMQServerControlTest.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/management/ActiveMQServerControlTest.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/management/ActiveMQServerControlTest.java index f03914a..7ae3606 100644 --- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/management/ActiveMQServerControlTest.java +++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/management/ActiveMQServerControlTest.java @@ -2743,11 +2743,6 @@ public class ActiveMQServerControlTest extends ManagementTestBase { Assert.assertEquals("messagesAcked", "0", array.getJsonObject(0).getString("messagesAcked")); Assert.assertEquals("deliveringCount", "0", array.getJsonObject(0).getString("deliveringCount")); Assert.assertEquals("messagesKilled", "0", array.getJsonObject(0).getString("messagesKilled")); - String resultDirectDeliver = array.getJsonObject(0).getString("deliverDeliver"); - // if there is a core consumer, the result here would be true (if directDeliver is supported). - // as for what we expect it's either true or false through management, we are not testing for directDeliver here, just - // if management works. - Assert.assertTrue(resultDirectDeliver.equals("true") || resultDirectDeliver.equals("false")); Assert.assertEquals("exclusive", "false", array.getJsonObject(0).getString("exclusive")); Assert.assertEquals("lastValue", "false", array.getJsonObject(0).getString("lastValue")); Assert.assertEquals("scheduledCount", "0", array.getJsonObject(0).getString("scheduledCount"));