aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
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) {