You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2016/11/30 16:54:41 UTC

activemq-artemis git commit: Fix Joram tests

Repository: activemq-artemis
Updated Branches:
  refs/heads/ARTEMIS-780 16decadb7 -> f5929486f


Fix Joram tests


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/f5929486
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/f5929486
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/f5929486

Branch: refs/heads/ARTEMIS-780
Commit: f5929486fb14c44cdc1e4deef1a535db597ad982
Parents: 16decad
Author: jbertram <jb...@apache.com>
Authored: Wed Nov 30 09:06:09 2016 -0600
Committer: jbertram <jb...@apache.com>
Committed: Wed Nov 30 10:54:19 2016 -0600

----------------------------------------------------------------------
 .../java/org/apache/activemq/artemis/common/AbstractAdmin.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/f5929486/tests/joram-tests/src/test/java/org/apache/activemq/artemis/common/AbstractAdmin.java
----------------------------------------------------------------------
diff --git a/tests/joram-tests/src/test/java/org/apache/activemq/artemis/common/AbstractAdmin.java b/tests/joram-tests/src/test/java/org/apache/activemq/artemis/common/AbstractAdmin.java
index 2ada3be..bcff21b 100644
--- a/tests/joram-tests/src/test/java/org/apache/activemq/artemis/common/AbstractAdmin.java
+++ b/tests/joram-tests/src/test/java/org/apache/activemq/artemis/common/AbstractAdmin.java
@@ -149,7 +149,7 @@ public class AbstractAdmin implements Admin {
    @Override
    public void createTopic(final String name) {
       try {
-         invokeSyncOperation(ResourceNames.BROKER, "createAddress", name, new Object[]{"MULTICAST"});
+         invokeSyncOperation(ResourceNames.BROKER, "createAddress", name, "MULTICAST");
       } catch (Exception e) {
          throw new IllegalStateException(e);
       }