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

[27/27] activemq-artemis git commit: Fix SelectorTest Topic prefix

Fix SelectorTest Topic prefix


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

Branch: refs/heads/ARTEMIS-780
Commit: df7b552ad21991da03975280c23ecb4b80e9de0d
Parents: 5547a6e
Author: Martyn Taylor <mt...@redhat.com>
Authored: Wed Nov 30 12:56:07 2016 +0000
Committer: Martyn Taylor <mt...@redhat.com>
Committed: Wed Nov 30 12:56:07 2016 +0000

----------------------------------------------------------------------
 .../java/org/apache/activemq/artemis/rest/test/SelectorTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/df7b552a/artemis-rest/src/test/java/org/apache/activemq/artemis/rest/test/SelectorTest.java
----------------------------------------------------------------------
diff --git a/artemis-rest/src/test/java/org/apache/activemq/artemis/rest/test/SelectorTest.java b/artemis-rest/src/test/java/org/apache/activemq/artemis/rest/test/SelectorTest.java
index 1491f51..245d25c 100644
--- a/artemis-rest/src/test/java/org/apache/activemq/artemis/rest/test/SelectorTest.java
+++ b/artemis-rest/src/test/java/org/apache/activemq/artemis/rest/test/SelectorTest.java
@@ -46,7 +46,7 @@ public class SelectorTest extends MessageTestBase {
 
    public static ConnectionFactory connectionFactory;
    public static String topicName = "testTopic";
-   public static String prefixedTopicName = ActiveMQDestination.createQueueAddressFromName(topicName).toString();
+   public static String prefixedTopicName = ActiveMQDestination.createTopicAddressFromName(topicName).toString();
 
    @BeforeClass
    public static void setup() throws Exception {