Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Feb 25, 2017
1 parent 1c7c1a6 commit c3d58df
Showing 1 changed file with 6 additions and 2 deletions.
Expand Up @@ -67,7 +67,6 @@ public function testPrefsAccess()

public function testCreateFolder()
{
$this->markTestIncomplete();
$storage = $this->_createStorage();
$p = new Horde_Prefs(
'test@example.com',
Expand All @@ -80,7 +79,12 @@ public function testCreateFolder()
);
$p['a'] = 'c';
$p->store();
$this->assertContains('INBOX/Preferences', $storage->getList()->listFolders());
$this->assertArrayHasKey(
'INBOX/Preferences',
$storage->getList()
->getQuery(Horde_Kolab_Storage_List_Tools::QUERY_BASE)
->listTypes()
);
$p->cleanup(true);
}

Expand Down

0 comments on commit c3d58df

Please sign in to comment.