This is an automated email from the ASF dual-hosted git repository.
tabish121 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-jms.git
The following commit(s) were added to refs/heads/main by this push:
new 595c1ca4 NO-JIRA: Clean up typos (#53)
595c1ca4 is described below
commit 595c1ca49700f31e8c9038f28738a4d377b568f2
Author: Krzysztof Porebski <[email protected]>
AuthorDate: Wed Jun 3 23:37:41 2026 +0200
NO-JIRA: Clean up typos (#53)
---
.../amqp/message/AmqpJmsMessagePropertyIntercepterTest.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpJmsMessagePropertyIntercepterTest.java
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpJmsMessagePropertyIntercepterTest.java
index 58b7964c..679ee49e 100644
---
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpJmsMessagePropertyIntercepterTest.java
+++
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpJmsMessagePropertyIntercepterTest.java
@@ -174,7 +174,7 @@ public class AmqpJmsMessagePropertyIntercepterTest {
}
@Test
- public void testJmsJmsAmqpReplyToGroupIdNotInPropertyNamesWhenNotSet()
throws JMSException {
+ public void testJmsAmqpReplyToGroupIdNotInPropertyNamesWhenNotSet() throws
JMSException {
AmqpJmsMessageFacade message = createAmqpMessageFacade();
assertNull(AmqpJmsMessagePropertyIntercepter.getProperty(message,
JMS_AMQP_REPLY_TO_GROUP_ID));
assertFalse(AmqpJmsMessagePropertyIntercepter.getPropertyNames(message).contains(JMS_AMQP_REPLY_TO_GROUP_ID));
@@ -275,21 +275,21 @@ public class AmqpJmsMessagePropertyIntercepterTest {
}
@Test
- public void testJmsAmqpTypedEncodingPropertExistsWhenSet() throws
JMSException {
+ public void testJmsAmqpTypedEncodingPropertyExistsWhenSet() throws
JMSException {
AmqpJmsObjectMessageFacade message = createAmqpObjectMessageFacade();
Mockito.when(message.isAmqpTypedEncoding()).thenReturn(true);
assertTrue(AmqpJmsMessagePropertyIntercepter.propertyExists(message,
JMS_AMQP_TYPED_ENCODING));
}
@Test
- public void testJmsAmqpTypedEncodingdPropertExistsWhenNotSet() throws
JMSException {
+ public void testJmsAmqpTypedEncodingPropertyExistsWhenNotSet() throws
JMSException {
AmqpJmsObjectMessageFacade message = createAmqpObjectMessageFacade();
Mockito.when(message.isAmqpTypedEncoding()).thenReturn(false);
assertFalse(AmqpJmsMessagePropertyIntercepter.propertyExists(message,
JMS_AMQP_TYPED_ENCODING));
}
@Test
- public void testJmsAmqpTypedEncodingdPropertExistsWhenNotAnObjectMessage()
throws JMSException {
+ public void testJmsAmqpTypedEncodingPropertyExistsWhenNotAnObjectMessage()
throws JMSException {
AmqpJmsMessageFacade message = createAmqpMessageFacade();
assertFalse(AmqpJmsMessagePropertyIntercepter.propertyExists(message,
JMS_AMQP_TYPED_ENCODING));
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]