From e722f4e36402431244f96029cece93972ca9c5e7 Mon Sep 17 00:00:00 2001 From: Havret Date: Wed, 18 Sep 2024 22:22:41 +0200 Subject: [PATCH] NO-JIRA: Clean up typos --- .../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 58b7964c6..679ee49e8 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 void testGetJmsAmqpReplyToGroupIdWhenSet() throws JMSException { } @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 void testJmsAmqpTypedEncodingInPropertyNamesWhenSet() throws JMSException } @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)); }