This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 1d85f43481 NIFI-14148 Corrected spelling of Successful in test method
names (#9625)
1d85f43481 is described below
commit 1d85f43481135a9f24f165546fe2484d2fb77baa
Author: Artur Mostowski <[email protected]>
AuthorDate: Fri Jan 10 19:43:16 2025 +0100
NIFI-14148 Corrected spelling of Successful in test method names (#9625)
Signed-off-by: David Handermann <[email protected]>
---
.../test/java/org/apache/nifi/amqp/processors/AMQPConsumerTest.java | 4 ++--
.../test/java/org/apache/nifi/amqp/processors/AMQPPublisherTest.java | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/nifi-extension-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/test/java/org/apache/nifi/amqp/processors/AMQPConsumerTest.java
b/nifi-extension-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/test/java/org/apache/nifi/amqp/processors/AMQPConsumerTest.java
index 8363e0f853..63c4851bd6 100644
---
a/nifi-extension-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/test/java/org/apache/nifi/amqp/processors/AMQPConsumerTest.java
+++
b/nifi-extension-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/test/java/org/apache/nifi/amqp/processors/AMQPConsumerTest.java
@@ -111,7 +111,7 @@ public class AMQPConsumerTest {
}
@Test
- public void validateSuccessfullConsumeWithEmptyQueueDefaultExchange()
throws Exception {
+ public void validateSuccessfulConsumeWithEmptyQueueDefaultExchange()
throws Exception {
Map<String, List<String>> routingMap = new HashMap<>();
routingMap.put("queue1", Arrays.asList("queue1"));
Map<String, String> exchangeToRoutingKeymap = new HashMap<>();
@@ -125,7 +125,7 @@ public class AMQPConsumerTest {
}
@Test
- public void validateSuccessfullConsumeWithEmptyQueue() throws Exception {
+ public void validateSuccessfulConsumeWithEmptyQueue() throws Exception {
Map<String, List<String>> routingMap = new HashMap<>();
routingMap.put("key1", Arrays.asList("queue1"));
Map<String, String> exchangeToRoutingKeymap = new HashMap<>();
diff --git
a/nifi-extension-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/test/java/org/apache/nifi/amqp/processors/AMQPPublisherTest.java
b/nifi-extension-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/test/java/org/apache/nifi/amqp/processors/AMQPPublisherTest.java
index 1429078d85..e2f3262ae5 100644
---
a/nifi-extension-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/test/java/org/apache/nifi/amqp/processors/AMQPPublisherTest.java
+++
b/nifi-extension-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/test/java/org/apache/nifi/amqp/processors/AMQPPublisherTest.java
@@ -67,7 +67,7 @@ public class AMQPPublisherTest {
}
@Test
- public void validateSuccessfullPublishingAndRouting() throws Exception {
+ public void validateSuccessfulPublishingAndRouting() throws Exception {
Map<String, List<String>> routingMap = new HashMap<>();
routingMap.put("key1", Arrays.asList("queue1", "queue2"));
Map<String, String> exchangeToRoutingKeymap = new HashMap<>();
@@ -86,7 +86,7 @@ public class AMQPPublisherTest {
}
@Test
- public void validateSuccessfullPublishingAndUndeliverableRoutingKey()
throws Exception {
+ public void validateSuccessfulPublishingAndUndeliverableRoutingKey()
throws Exception {
Map<String, List<String>> routingMap = new HashMap<>();
routingMap.put("key1", Arrays.asList("queue1", "queue2"));
Map<String, String> exchangeToRoutingKeymap = new HashMap<>();