Normalise formatting (comments and white space only).
Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
parent
6b866a0ddd
commit
04870102a2
2 changed files with 2 additions and 3 deletions
|
@ -270,7 +270,6 @@ public final class WiserAssertions {
|
||||||
final StringBuilder sb = new StringBuilder();
|
final StringBuilder sb = new StringBuilder();
|
||||||
for (int i = 0; i < mimeMultipart.getCount(); i++) {
|
for (int i = 0; i < mimeMultipart.getCount(); i++) {
|
||||||
Object content = mimeMultipart.getBodyPart(i).getContent();
|
Object content = mimeMultipart.getBodyPart(i).getContent();
|
||||||
|
|
||||||
if (content instanceof MimeMultipart) {
|
if (content instanceof MimeMultipart) {
|
||||||
sb.append(getMimeMultipartAsString((MimeMultipart) content));
|
sb.append(getMimeMultipartAsString((MimeMultipart) content));
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -15,8 +15,8 @@ import javax.mail.Message;
|
||||||
public class Issue1Test extends AbstractWiserTest {
|
public class Issue1Test extends AbstractWiserTest {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test {@link WiserAssertions#withContentContains(String)} where
|
* Test {@link WiserAssertions#withContentContains(String)} where the nested
|
||||||
* the nested multipart message contains the expected text
|
* multi-part message contains the expected text.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void shouldParseNestedMultiPartEmails() {
|
public void shouldParseNestedMultiPartEmails() {
|
||||||
|
|
Loading…
Reference in a new issue