aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar DINH Viet Hoa <dinh.viet.hoa@gmail.com>2013-03-23 16:27:20 -0700
committerGravatar DINH Viet Hoa <dinh.viet.hoa@gmail.com>2013-03-23 16:27:20 -0700
commitd9444ef87c866e3535562a693236b55d88379886 (patch)
treeabfef08ad60df8e84fa46549be7bdd10bb713c9a /tests
parent77d8decc5071234189dc803d715015f0a93c7652 (diff)
Make IMAP ObjC bridge implementation consistent
Diffstat (limited to 'tests')
-rw-r--r--tests/main.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/main.mm b/tests/main.mm
index 7d2f3241..c82fca2e 100644
--- a/tests/main.mm
+++ b/tests/main.mm
@@ -282,7 +282,7 @@ void testObjC()
session.connectionType = MCOConnectionTypeTLS;
NSLog(@"check account");
- MCOCheckAccountOperation *checkOp = [session checkAccountOperation];
+ MCOIMAPOperation *checkOp = [session checkAccountOperation];
[checkOp start:^(NSError *err) {
NSLog(@"check account done");
if (err) {
@@ -290,7 +290,7 @@ void testObjC()
} else {
NSLog(@"CONNECTED");
NSLog(@"fetch all folders");
- MCOFetchFoldersOperation *foldersOp = [session fetchAllFoldersOperation];
+ MCOIMAPFetchFoldersOperation *foldersOp = [session fetchAllFoldersOperation];
[foldersOp start:^(NSError *err, NSArray *folders) {
NSLog(@"fetch all folders done");
if (err) {