You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by or...@apache.org on 2017/07/28 15:10:07 UTC

qpid-broker-j git commit: QPID-7434: Fix failing test

Repository: qpid-broker-j
Updated Branches:
  refs/heads/master 5489d616f -> 47ac14c69


QPID-7434: Fix failing test


Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/47ac14c6
Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/47ac14c6
Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/47ac14c6

Branch: refs/heads/master
Commit: 47ac14c69b0cb6ab12e18c635973ef9adccde691
Parents: 5489d61
Author: Alex Rudyy <or...@apache.org>
Authored: Fri Jul 28 16:02:18 2017 +0100
Committer: Alex Rudyy <or...@apache.org>
Committed: Fri Jul 28 16:02:18 2017 +0100

----------------------------------------------------------------------
 .../converter/v0_8_v1_0/PropertyConverter_1_0_to_0_8Test.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/47ac14c6/broker-plugins/amqp-msg-conv-0-8-to-1-0/src/test/java/org/apache/qpid/server/protocol/converter/v0_8_v1_0/PropertyConverter_1_0_to_0_8Test.java
----------------------------------------------------------------------
diff --git a/broker-plugins/amqp-msg-conv-0-8-to-1-0/src/test/java/org/apache/qpid/server/protocol/converter/v0_8_v1_0/PropertyConverter_1_0_to_0_8Test.java b/broker-plugins/amqp-msg-conv-0-8-to-1-0/src/test/java/org/apache/qpid/server/protocol/converter/v0_8_v1_0/PropertyConverter_1_0_to_0_8Test.java
index 186888c..ecf85ac 100644
--- a/broker-plugins/amqp-msg-conv-0-8-to-1-0/src/test/java/org/apache/qpid/server/protocol/converter/v0_8_v1_0/PropertyConverter_1_0_to_0_8Test.java
+++ b/broker-plugins/amqp-msg-conv-0-8-to-1-0/src/test/java/org/apache/qpid/server/protocol/converter/v0_8_v1_0/PropertyConverter_1_0_to_0_8Test.java
@@ -596,7 +596,7 @@ public class PropertyConverter_1_0_to_0_8Test extends QpidTestCase
         final MessagePublishInfo messagePublishInfo = convertedMessage.getMessagePublishInfo();
 
         assertEquals("Unexpected exchange", testExchange, messagePublishInfo.getExchange().toString());
-        assertEquals("Unexpected routing key", null, messagePublishInfo.getRoutingKey());
+        assertEquals("Unexpected routing key", "", messagePublishInfo.getRoutingKey().toString());
     }
 
     public void testToConversionWhenExchangeIsSpecifiedAndSubjectIsSet()


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org