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

Commit 9d18ed97 authored by cketti's avatar cketti
Browse files

Fix TestImapResponseCallback

parent 406fd6b9
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -435,11 +435,10 @@ public class ImapResponseParserTest {
            foundLiteralCalled = true;

            int skipBytes = readNumberOfBytes;
            long skippedBytes;
            do {
                skippedBytes = literal.skip(skipBytes);
            while (skipBytes > 0) {
                long skippedBytes = literal.skip(skipBytes);
                skipBytes -= skippedBytes;
            } while (skippedBytes > 0);
            }

            return returnValue;
        }