JAMES-2169 Fix typo
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/dbaadbd6 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/dbaadbd6 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/dbaadbd6 Branch: refs/heads/master Commit: dbaadbd64d3c2aeb686b544949d15f246b1054df Parents: a7ffeb3 Author: benwa <[email protected]> Authored: Tue Oct 3 18:50:20 2017 +0700 Committer: benwa <[email protected]> Committed: Wed Oct 4 16:24:50 2017 +0700 ---------------------------------------------------------------------- .../apache/james/mpt/imapmailbox/suite/AuthenticatedState.java | 6 +++--- .../apache/james/adapter/mailbox/MailboxManagementTest.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/dbaadbd6/mpt/impl/imap-mailbox/core/src/main/java/org/apache/james/mpt/imapmailbox/suite/AuthenticatedState.java ---------------------------------------------------------------------- diff --git a/mpt/impl/imap-mailbox/core/src/main/java/org/apache/james/mpt/imapmailbox/suite/AuthenticatedState.java b/mpt/impl/imap-mailbox/core/src/main/java/org/apache/james/mpt/imapmailbox/suite/AuthenticatedState.java index 8a2d075..d2b2f2b 100644 --- a/mpt/impl/imap-mailbox/core/src/main/java/org/apache/james/mpt/imapmailbox/suite/AuthenticatedState.java +++ b/mpt/impl/imap-mailbox/core/src/main/java/org/apache/james/mpt/imapmailbox/suite/AuthenticatedState.java @@ -410,14 +410,14 @@ public abstract class AuthenticatedState extends BasicImapCommands { } @Test - public void listShouldNotListMailboxWithOtherNamspaceUS() throws Exception { + public void listShouldNotListMailboxWithOtherNamespaceUS() throws Exception { Assume.assumeTrue(system.supports(Feature.NAMESPACE_SUPPORT)); system.createMailbox(new MailboxPath("#namespace", USER, "Other")); simpleScriptedTestProtocol.run("ListMailboxes"); } @Test - public void listShouldNotListMailboxWithOtherNamspaceITALY() throws Exception { + public void listShouldNotListMailboxWithOtherNamespaceITALY() throws Exception { Assume.assumeTrue(system.supports(Feature.NAMESPACE_SUPPORT)); system.createMailbox(new MailboxPath("#namespace", USER, "Other")); simpleScriptedTestProtocol @@ -426,7 +426,7 @@ public abstract class AuthenticatedState extends BasicImapCommands { } @Test - public void listShouldNotListMailboxWithOtherNamspaceKOREA() throws Exception { + public void listShouldNotListMailboxWithOtherNamespaceKOREA() throws Exception { Assume.assumeTrue(system.supports(Feature.NAMESPACE_SUPPORT)); system.createMailbox(new MailboxPath("#namespace", USER, "Other")); simpleScriptedTestProtocol http://git-wip-us.apache.org/repos/asf/james-project/blob/dbaadbd6/server/container/mailbox-adapter/src/test/java/org/apache/james/adapter/mailbox/MailboxManagementTest.java ---------------------------------------------------------------------- diff --git a/server/container/mailbox-adapter/src/test/java/org/apache/james/adapter/mailbox/MailboxManagementTest.java b/server/container/mailbox-adapter/src/test/java/org/apache/james/adapter/mailbox/MailboxManagementTest.java index 4c4f130..b5e6204 100644 --- a/server/container/mailbox-adapter/src/test/java/org/apache/james/adapter/mailbox/MailboxManagementTest.java +++ b/server/container/mailbox-adapter/src/test/java/org/apache/james/adapter/mailbox/MailboxManagementTest.java @@ -149,7 +149,7 @@ public class MailboxManagementTest { } @Test - public void createMailboxShouldThrowIfMailboxAlreadyExist() throws Exception { + public void createMailboxShouldThrowIfMailboxAlreadyExists() throws Exception { MailboxPath path = MailboxPath.forUser(USER, "name"); Mailbox mailbox = new SimpleMailbox(path, UID_VALIDITY); inMemoryMapperFactory.createMailboxMapper(session).save(mailbox); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
