Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6caada1b authored by cketti's avatar cketti
Browse files

Fix warnings

parent f9853dce
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -533,8 +533,7 @@ public class ImapFolderTest {
    public void getHighestUid_imapConnectionThrowsNegativesResponse_shouldReturnMinus1() throws Exception {
        ImapFolder folder = createFolder("Folder");
        prepareImapFolderForOpen(OPEN_MODE_RW);
        when(imapConnection.executeSimpleCommand("UID SEARCH *:*"))
                .thenThrow(NegativeImapResponseException.class);
        doThrow(NegativeImapResponseException.class).when(imapConnection).executeSimpleCommand("UID SEARCH *:*");
        folder.open(OPEN_MODE_RW);

        long highestUid = folder.getHighestUid();
@@ -546,8 +545,7 @@ public class ImapFolderTest {
    public void getHighestUid_imapConnectionThrowsIOException_shouldThrowMessagingException() throws Exception {
        ImapFolder folder = createFolder("Folder");
        prepareImapFolderForOpen(OPEN_MODE_RW);
        when(imapConnection.executeSimpleCommand("UID SEARCH *:*"))
                .thenThrow(IOException.class);
        doThrow(IOException.class).when(imapConnection).executeSimpleCommand("UID SEARCH *:*");
        folder.open(OPEN_MODE_RW);

        try {