diff options
| author | Vincent Richard <[email protected]> | 2014-01-03 19:41:32 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2014-01-03 19:41:32 +0000 |
| commit | bd378bbfa228f723c62da09c7caa09b8e5569266 (patch) | |
| tree | a2354843ab3dd4cc279b6f5967f73ef96f66f38e /tests/net/maildir/maildirStoreTest.cpp | |
| parent | Do not expose internal constants. (diff) | |
| download | vmime-bd378bbfa228f723c62da09c7caa09b8e5569266.tar.gz vmime-bd378bbfa228f723c62da09c7caa09b8e5569266.zip | |
Added support for SPECIAL-USE extension (IMAP).
Diffstat (limited to 'tests/net/maildir/maildirStoreTest.cpp')
| -rw-r--r-- | tests/net/maildir/maildirStoreTest.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/net/maildir/maildirStoreTest.cpp b/tests/net/maildir/maildirStoreTest.cpp index 34e8249c..7e0ee39a 100644 --- a/tests/net/maildir/maildirStoreTest.cpp +++ b/tests/net/maildir/maildirStoreTest.cpp @@ -456,8 +456,10 @@ public: VASSERT("Before", !store->getFolder(fpath() / "Folder" / "NewFolder")->exists()); - VASSERT_NO_THROW("Creation", store->getFolder(fpath() / "Folder" / "NewFolder")-> - create(vmime::net::folder::TYPE_CONTAINS_MESSAGES)); + vmime::net::folderAttributes attribs; + attribs.setType(vmime::net::folderAttributes::TYPE_CONTAINS_MESSAGES); + + VASSERT_NO_THROW("Creation", store->getFolder(fpath() / "Folder" / "NewFolder")->create(attribs)); VASSERT("After", store->getFolder(fpath() / "Folder" / "NewFolder")->exists()); |
