Skip to content

Commit 2eaa1d4

Browse files
author
Steve Powell
committed
Merge in default
2 parents 5ec8353 + 54b292b commit 2eaa1d4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/com/rabbitmq/client/impl/ClientVersion.java.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616

1717
package com.rabbitmq.client.impl;
1818

19+
/**
20+
* Publicly available Client Version information
21+
*/
1922
public class ClientVersion {
23+
/** Full version string */
2024
public static final String VERSION = "@VERSION@";
2125
}

test/src/com/rabbitmq/client/test/BrokerTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ protected void assertDelivered(String q, int count, boolean redelivered) throws
169169
for (int i = 0; i < count; i++) {
170170
r = basicGet(q);
171171
assertNotNull(r);
172-
assertEquals(r.getEnvelope().isRedeliver(), redelivered);
172+
assertEquals(redelivered, r.getEnvelope().isRedeliver());
173173
}
174174
assertNull(basicGet(q));
175175
}

0 commit comments

Comments
 (0)