diff options
author | Vincent Richard <[email protected]> | 2010-12-10 16:54:38 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2010-12-10 16:54:38 +0000 |
commit | 9e4867b641a54e316dd1264c9b62489885185fa3 (patch) | |
tree | 9810189bef2f52db7e0575bb969452970ecb9b9f /tests/parser/bodyPartTest.cpp | |
parent | Fixed unit test after bug fix. (diff) | |
download | vmime-9e4867b641a54e316dd1264c9b62489885185fa3.tar.gz vmime-9e4867b641a54e316dd1264c9b62489885185fa3.zip |
Fixed boundary parsing (thanks to John van der Kamp, Zarafa).
Diffstat (limited to 'tests/parser/bodyPartTest.cpp')
-rw-r--r-- | tests/parser/bodyPartTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parser/bodyPartTest.cpp b/tests/parser/bodyPartTest.cpp index 12c4f74b..df2bf851 100644 --- a/tests/parser/bodyPartTest.cpp +++ b/tests/parser/bodyPartTest.cpp @@ -84,7 +84,7 @@ VMIME_TEST_SUITE_BEGIN vmime::string str = "Content-Type: multipart/mixed; boundary=\"MY-BOUNDARY\"" "\r\n\r\n" - "--MY-BOUNDARY\r\nHEADER1\r\n\r\nBODY1" + "--MY-BOUNDARY\r\nHEADER1\r\n\r\nBODY1\r\n" "--MY-BOUNDARY\r\nHEADER2\r\n\r\nBODY2"; vmime::bodyPart p; |