Skip to content

Commit

Permalink
NIFI-14148 Corrected spelling of Successful in test method names (#9625)
Browse files Browse the repository at this point in the history
Signed-off-by: David Handermann <exceptionfactory@apache.org>
  • Loading branch information
Vulwsztyn authored Jan 10, 2025
1 parent 3c770ff commit 1d85f43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void failOnNonExistingQueue() {
}

@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<>();
Expand All @@ -125,7 +125,7 @@ public void validateSuccessfullConsumeWithEmptyQueueDefaultExchange() throws Exc
}

@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<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void failPublishIfChannelFails() {
}

@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<>();
Expand All @@ -86,7 +86,7 @@ public void validateSuccessfullPublishingAndRouting() throws Exception {
}

@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<>();
Expand Down

0 comments on commit 1d85f43

Please sign in to comment.