aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-11-13 00:54:48 -0800
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-11-13 00:54:48 -0800
commitad387cce77cf788fbad2da27c987f78dac4db477 (patch)
treeb48972ce664ef60838cfd118b293923dc829a11d /tests
parent257a7818f58ee67953e91e381dc3e28a41f14845 (diff)
Fixed #260: added ability to render a message without stripping spaces
Diffstat (limited to 'tests')
-rw-r--r--tests/test-all.mm3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test-all.mm b/tests/test-all.mm
index 2d6fe30b..4c81a697 100644
--- a/tests/test-all.mm
+++ b/tests/test-all.mm
@@ -83,7 +83,8 @@ static void testMessageParser(mailcore::Data * data)
MCLog("%s", MCUTF8DESC(parser));
MCLog("HTML rendering");
MCLog("%s", MCUTF8(parser->htmlRendering()));
- MCLog("%s", MCUTF8(parser->plainTextBodyRendering()));
+ MCLog("%s", MCUTF8(parser->plainTextBodyRendering(true)));
+ MCLog("%s", MCUTF8(parser->plainTextBodyRendering(false)));
}
static void testIMAP()